在禁用的WPF StackPanel中处理click事件或MouseDown
本文关键字:click 处理 事件 MouseDown StackPanel WPF | 更新日期: 2023-09-27 18:14:53
已经有一段时间了,我正在尝试做这样的事情,我现在正在抛出一个notimplementdexception…我是说,认输。你是我最后的希望。
所以,这就是我的目标:当用户为了用户友好的目的点击它时启用StackPanel。
我有一些项目在这个禁用的StackPanel是在一个ScrollViewer内的网格内的窗口。
我的代码中有一部分是用来理解的:
<Grid x:Name="MainGrid">
<Grid.RowDefinitions>
<RowDefinition MinHeight="30" MaxHeight="30"/>
<RowDefinition MinHeight="22" MaxHeight="22"/>
<RowDefinition MinHeight="155" Height="155"/>
<RowDefinition MinHeight="130"/>
<RowDefinition MinHeight="25" MaxHeight="25"/>
<RowDefinition MinHeight="22" MaxHeight="22"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="355" Width="360" />
<ColumnDefinition MinWidth="330" />
<ColumnDefinition MinWidth="280" />
</Grid.ColumnDefinitions>
<ScrollViewer Grid.Column="2" Grid.Row="3" VerticalScrollBarVisibility="Auto">
<StackPanel IsEnabled="False" IsEnabledChanged="ioStackPanel_IsEnabledChanged">
<Grid Height="22">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="110"/>
<ColumnDefinition/>
<ColumnDefinition Width="50"/>
<ColumnDefinition Width="50"/>
<ColumnDefinition Width="20"/>
</Grid.ColumnDefinitions>
</Grid>
</StackPanel>
</ScrollViewer>
</Grid>
我已经试过了:
<ScrollViewer Grid.Column="2" Grid.Row="3" VerticalScrollBarVisibility="Auto" MouseDown="ScrollViewer_MouseDown">
private void ScrollViewer_MouseDown(object sender, MouseButtonEventArgs e)
{
MessageBox.Show("Well done bro!");
}
但是什么也没有升起。无MessageBox
下面的代码可以正常工作,请按照它执行。
<Grid x:Name="MainGrid">
<Grid.RowDefinitions>
<RowDefinition MinHeight="30" MaxHeight="30" />
<RowDefinition MinHeight="22" MaxHeight="22" />
<RowDefinition Height="155" MinHeight="155" />
<RowDefinition MinHeight="130" />
<RowDefinition MinHeight="25" MaxHeight="25" />
<RowDefinition MinHeight="22" MaxHeight="22" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="360" MinWidth="355" />
<ColumnDefinition MinWidth="330" />
<ColumnDefinition MinWidth="280" />
</Grid.ColumnDefinitions>
<ScrollViewer Grid.Row="3"
Grid.Column="2"
PreviewMouseLeftButtonDown="InnerPanel_PreviewMouseLeftButtonDown_1"
VerticalScrollBarVisibility="Auto">
<StackPanel Name="InnerPanel"
Background="Gray"
IsEnabled="False"
IsEnabledChanged="StackPanel_IsEnabledChanged_1">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="110" />
<ColumnDefinition />
<ColumnDefinition Width="50" />
<ColumnDefinition Width="50" />
<ColumnDefinition Width="20" />
</Grid.ColumnDefinitions>
<Button Grid.Column="2" Content="Inner Panel" />
</Grid>
</StackPanel>
</ScrollViewer>
</Grid>
private void InnerPanel_PreviewMouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
{
}
这很好,并在上述事件中实现您的逻辑。
不幸的是,当控件被禁用时,它会消耗它的所有事件而不做任何事情。
如何使用一个网格把它放在一个透明面板后面。当用户点击面板时,你可以隐藏面板并启用你的stackpanel。
之类的…
<scrollviewer ...>
<grid> <!--New grid just to align the two panels-->
<stackpanel x:Name="enableMe" IsEnabled="False" ...>
....
</stackpanel>
<border x:name="hideMe" Background="Transparent" Click="EnableStackPanel" ZIndex="1"/>
</grid>
</stackpanel>
public void EnableStackPanel(...)
{
enableMe.IsEnabled=true;
hideMe.Visibilty = Visibility.Collapsed;
}