博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
silverlight鼠标事件获取point
阅读量:6212 次
发布时间:2019-06-21

本文共 901 字,大约阅读时间需要 3 分钟。

XAML代码:

 

cs代码:

using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace SilverlightApplication50 {
public partial class EventMouse : UserControl {
public EventMouse() {
InitializeComponent(); } private void Canvas_MouseMove(object sender, MouseEventArgs e) {
Point p =e.GetPosition(null); this.mybutton.SetValue(Canvas.LeftProperty, p.X); this.mybutton.SetValue(Canvas.TopProperty, p.Y); this.TextBlock1.Text = string.Format("X坐标是{0},Y坐标是{1}", p.X, p.Y); } } }

转载于:https://www.cnblogs.com/eagle1986/archive/2011/09/23/2185745.html

你可能感兴趣的文章
CGRect
查看>>
chmod
查看>>
怎么在本地调试其他机器网站执行代码
查看>>
rem和em小插曲
查看>>
转Hibernate继承
查看>>
django初识
查看>>
Redis事务
查看>>
WFP MSBuild
查看>>
python进程和线程
查看>>
国外论坛问题集
查看>>
图片压缩
查看>>
设置响应编码
查看>>
java对象转json格式
查看>>
CCF201604-1 折点计数(解法二)(100分)
查看>>
小朋友做对题才能玩的游戏
查看>>
十二章:构建响应式网站
查看>>
Redis学习笔记~conf自主集群模式
查看>>
大数据系列之Kafka安装
查看>>
CDH3U3 FAILED: Error in metadata: javax.jdo.JDOFatalInternalException: Unexpected exception caught.
查看>>
40个Java多线程问题总结
查看>>