溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

添加C1WPFChart快捷鍵

發(fā)布時(shí)間:2020-06-24 20:51:18 來(lái)源:網(wǎng)絡(luò) 閱讀:462 作者:C1SupportTeam 欄目:編程語(yǔ)言

 C1Chart for WPF 提供了強(qiáng)大、豐富的界面元素、動(dòng)態(tài)和數(shù)據(jù)綁定功能。這個(gè)控件擁有和最終用戶(hù)交互的內(nèi)置功能。最終用戶(hù)可以使用Mouse和 Shift 鍵配合使用來(lái)搜索、旋轉(zhuǎn)和縮放 C1Chart。

有很多用戶(hù)向我們?cè)儐?wèn),如何添加C1WPFChart 快捷鍵。這篇文章將闡述如何實(shí)現(xiàn)這個(gè) Case。


這種方法非常簡(jiǎn)單。手動(dòng)的設(shè)置焦點(diǎn)到C1Chart 后你可以控制 keyboard 事件同時(shí)添加相應(yīng)代碼來(lái)實(shí)現(xiàn)快捷鍵的添加。但是,定制的快捷鍵并非是全局的,必須在 C1Chart 獲得焦點(diǎn)的情況下才起作用。
在本文章中,我們將展示使用KeyDown/KeyUp 來(lái)實(shí)現(xiàn)縮放功能。實(shí)現(xiàn)代碼如下: 

 1 Private Sub Chart1_MouseLeftButtonDown(ByVal sender As Object, ByVal e As System.Windows.Input.MouseButtonEventArgs Handles Chart1.MouseLeftButtonDown   2      'Setting the Focus manually. 
 3      'Without forcing this Focus, the keyboard events are not recognised. 
 4       Chart1.Focus()   5 End Sub  6   
 7 Private Sub Chart1_PreviewKeyDown(ByVal sender As Object, ByVal e As System.Windows.Input.KeyEventArgs) Handles Chart1.<span>PreviewKeyDown   8       Chart1.View.AxisX.MinScale = 0.001 
 9       Chart1.View.AxisY.MinScale = 0.001 
10   
11       'Checking the pressed key 
12       If e.Key = Key.Down Then 13            Chart1.BeginUpdate()  14   
15            'Decreasing the scale values in order to ZoomIn 
16            Chart1.View.AxisX.Scale = Chart1.View.AxisX.Scale - 0.35 
17            Chart1.View.AxisY.Scale = Chart1.View.AxisY.Scale - 0.35 
18   
19            UpdateScrollbars()  20            Chart1.EndUpdate()  21   
22       ElseIf e.Key = Key.Up Then 23            Chart1.BeginUpdate()  24   
25           'Increasing the scale values in order to ZoomOut 
26            Chart1.View.AxisX.scale = Chart1.View.AxisX.Scale + 0.35 
27            Chart1.View.AxisY.Scale = Chart1.View.AxisY.Scale + 0.35 
28   
29            UpdateScrollbars()  30            Chart1.EndUpdate()  31   
32       ElseIf e.Key = Key.Escape Then 33            Chart1.BeginUpdate()  34   
35            'Setting the Scale to Default Value 
36            Chart1.View.AxisX.Scale = 1 
37            Chart1.View.AxisY.Scale = 1 
38   
39            UpdateScrollbars()  40            Chart1.EndUpdate()  41       End If 42 End Sub

添加C1WPFChart快捷鍵cdn.grapecity.com/p_w_upload.aspx?p_w_uploadid=3612">

×××:

C#:Wpf_Chart_KeyboardShortcuts_CS.zip 

VB:Wpf_Chart_KeyBoardShortcuts.zip 

很高興能和大家分享 ComponentOne 的使用方法、討論 ComponentOne 使用過(guò)程中遇到的問(wèn)題。

了解更多,請(qǐng)登錄:

葡萄城控件產(chǎn)品網(wǎng)站:http://www.gcpowertools.com.cn/ 
葡萄城技術(shù)支持論壇:http://gcdn.grapecity.com/

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI