符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
C1Chart for WPF 提供了强大、丰富的界面元素、动态和数据绑定功能。这个控件拥有和最终用户交互的内置功能。最终用户可以使用Mouse和 Shift 键配合使用来搜索、旋转和缩放 C1Chart。
创新互联公司是一家集网站建设,迪庆州企业网站建设,迪庆州品牌网站建设,网站定制,迪庆州网站建设报价,网络营销,网络优化,迪庆州网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。
有很多用户向我们询问,如何添加C1WPFChart 快捷键。这篇文章将阐述如何实现这个 Case。
这种方法非常简单。手动的设置焦点到C1Chart 后你可以控制 keyboard 事件同时添加相应代码来实现快捷键的添加。但是,定制的快捷键并非是全局的,必须在 C1Chart 获得焦点的情况下才起作用。
在本文章中,我们将展示使用KeyDown/KeyUp 来实现缩放功能。实现代码如下:
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.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 Then13 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 Then23 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 Then33 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 If42 End Sub
cdn.grapecity.com/p_w_upload.aspx?p_w_uploadid=3612">
×××:
C#:Wpf_Chart_KeyboardShortcuts_CS.zip
VB:Wpf_Chart_KeyBoardShortcuts.zip
很高兴能和大家分享 ComponentOne 的使用方法、讨论 ComponentOne 使用过程中遇到的问题。
了解更多,请登录:
葡萄城控件产品网站:http://www.gcpowertools.com.cn/
葡萄城技术支持论坛:http://gcdn.grapecity.com/