鼠标移动时,光标相对于对象的位置
生活随笔
收集整理的這篇文章主要介紹了
鼠标移动时,光标相对于对象的位置
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
鼠標在一個物體上移動時,能夠計算出光標相對于任何其它對象的相對位置。 Code?<Grid?x:Name="LayoutRoot"?Background="White">
????????<Grid?HorizontalAlignment="Left"?VerticalAlignment="Top"?Name="grid1"?Background="Red"?Width="100"?Height="100"?MouseEnter="Grid_MouseEnter"
???????????????MouseMove="Grid_MouseMove"
??????????????MouseLeave="Grid_MouseLeave"
??????????????>
????????????
????????</Grid>
????????<Grid?HorizontalAlignment="Left"?VerticalAlignment="Top"?Name="grid2"?Margin="150,0,0,0"?Background="Green"?Width="100"?Height="100"?MouseMove="Grid_MouseMove_1">
??????????????
????????</Grid>
????????<Grid?HorizontalAlignment="Left"?VerticalAlignment="Top"?Name="grid3"?Background="Blue"?Margin="300,0,0,0"?Width="100"?Height="100"?MouseMove="Grid_MouseMove_2">
????????</Grid>
????????<TextBlock?Name="label1"?Margin="20,200,0,0">
????????????
????????????<Run????Foreground="Red"??>
???????????????mouse?離grid1左上角距離:
?????????????????
????????????</Run>
???????????
????????????<LineBreak></LineBreak>
????????????<Run??Foreground="Green">
???????????????mouse?離grid2左上角距離:
????????????</Run>
????????????<LineBreak/>
????????????<Run??Foreground="Blue">
???????????????mouse?離grid3左上角距離:
????????????</Run>
????????????
????????????
????????????
????????</TextBlock>
????</Grid> Code
??public?partial?class?Page?:?UserControl
????{
????????public?Page()
????????{
????????????InitializeComponent();
????????}
????????private?void?Grid_MouseEnter(object?sender,?MouseEventArgs?e)
????????{
????????}
????????private?void?Grid_MouseMove(object?sender,?MouseEventArgs?e)
????????{
??????????this.label1.Text="Mouse?離grid1距離為:"+e.GetPosition(this.grid1)+"\r\n";
??????????this.label1.Text?+=?"Mouse?離grid2距離為:"?+?e.GetPosition(this.grid2)?+?"\r\n";
??????????this.label1.Text?+=?"Mouse?離grid3距離為:"?+?e.GetPosition(this.grid3);?
????????????
????????}
????????private?void?Grid_MouseLeave(object?sender,?MouseEventArgs?e)
????????{
????????}
????????private?void?Grid_MouseMove_1(object?sender,?MouseEventArgs?e)
????????{
????????????//this.label1.d?=?"<Run????Foreground=\"Red\"??>?mouse?離grid1中心距離:</Run>"?+?e.GetPosition(this.grid1)?+?"<LineBreak></LineBreak>";
????????????this.label1.Text?=?"Mouse?離grid1距離為:"?+?e.GetPosition(this.grid1)?+?"\r\n";
????????????this.label1.Text?+=?"Mouse?離grid2距離為:"?+?e.GetPosition(this.grid2)?+?"\r\n";
????????????this.label1.Text?+=?"Mouse?離grid3距離為:"?+?e.GetPosition(this.grid3);?
????????}
????????private?void?Grid_MouseMove_2(object?sender,?MouseEventArgs?e)
????????{
????????????this.label1.Text?=?"Mouse?離grid1距離為:"?+?e.GetPosition(this.grid1)?+?"\r\n";
????????????this.label1.Text?+=?"Mouse?離grid2距離為:"?+?e.GetPosition(this.grid2)?+?"\r\n";
????????????this.label1.Text?+=?"Mouse?離grid3距離為:"?+?e.GetPosition(this.grid3);?
????????}
????}
轉載于:https://www.cnblogs.com/netfuns/archive/2009/09/12/1565195.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的鼠标移动时,光标相对于对象的位置的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 重温Observer模式--热水器·改(
- 下一篇: .NET平台下WEB应用程序的部署(安装