6

如何在此分配 Click 事件?当鼠标单击此窗口时,我想做一些事情。它在 Window 和 Canvas 中都没有 Click 属性

<Window Loaded="Window_Loaded"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="InClassApp.UI.TextNotify"
  x:Name="Window"
  Title="TextNotify"
  Width="400" Height="100"
  WindowStyle="None"
  AllowsTransparency="True"
  Background="Transparent"
  ShowInTaskbar="False">
  <Border CornerRadius="5">
    <Border.Background>
        <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
            <GradientStop Color="#FFBAFDFF" Offset="0"/>
            <GradientStop Color="White" Offset="1"/>
        </LinearGradientBrush>
    </Border.Background>
       <Canvas x:Name="LayoutRoot" >
        .......
    </Canvas>
</Border>

4

2 回答 2

14

您可以改为处理MouseLeftButtonUp事件。

于 2010-11-21T07:02:41.380 回答
10

你可能想添加MouseLeftButtonDown="Window_MouseLeftButtonDown"你的<Window>元素。

并在代码隐藏文件中添加以下内容。

private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    // do some stuff here.
}
于 2010-11-21T08:03:32.717 回答