3

我正在尝试做类似的事情已经有一段时间了,我现在要抛出 NotImplementedException ......我的意思是,认输。你是我最后的希望。

所以,我的目标是:当用户点击 StackPanel 时启用它以方便用户使用。

我在这个禁用的 StackPanel 中有一些项目,它位于 Window 内的 Grid 内的 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!");
}

但什么都没有提出。不显示消息框。

4

2 回答 2

1

以下代码工作正常,请遵循它。

<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)
    {

    }

这工作正常并在上述事件中实现您的逻辑。

于 2013-05-22T11:11:41.260 回答
1

不幸的是,当一个控件被禁用时,它会消耗它的所有事件并且什么都不做。

如何使用网格将其放在透明面板后面。当用户单击面板时,您将隐藏面板并启用您的堆栈面板。

就像是...

<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;
}
于 2013-05-22T11:12:58.657 回答