2

我正在处理菜单的一部分,以允许其用户重新组织它。这个菜单有一个带有 12 个元素的网格(4x3),所有元素都是 NavButton 类型,这是我创建的一个扩展 Button 的类。在 NavButton 中,我有一个拖动功能,允许按钮在整个网格中移动,目前我正在确定每个按钮应该在 MouseEnter 事件上的位置。

为了确定 NavButton 应该重新定位的位置,我放置了会在 MouseEnter 上变亮的细矩形,或者我认为它们应该是这样工作的。我的问题是,当 NavButton 被拖动到矩形上方时,MouseEnter 事件将不会触发,因为鼠标位于矩形上方的 NavButton 上方。对不起,如果这听起来令人困惑,但我会在下面发布代码。

综上所述,我想知道是否有可能创建一个事件来确定 NavButton 何时“进入”矩形,类似于 MouseEnter 事件的工作方式?

C#:

    private void rectangle_MouseEnter(object sender, MouseEventArgs e)
    {
        foreach (UIElement uie in this.grids[tabNavigation.SelectedIndex].Children)
        {
            if (uie.GetType() == typeof(NavButton_UC))
            {
                if ((uie as NavButton_UC).IsDragging)
                {
                    (sender as Rectangle).Fill = Brushes.Gray;
                }
            }
        }
    }

    private void rectangle_MouseLeave(object sender, MouseEventArgs e)
    {
        (sender as Rectangle).Fill = Brushes.Black;
    }

XAML:

             //The Style is in my ResourceDictionary
             <Style TargetType="Rectangle">
                <Setter Property="Fill" Value="Black" />
                <Setter Property="Height" Value="151" />
                <Setter Property="Width" Value="10" />
                <Setter Property="HorizontalAlignment" Value="Left" />
                <Setter Property="Opacity" Value=".6" />
                <EventSetter Event="MouseEnter" Handler="rectangle_MouseEnter" />
                <EventSetter Event="MouseLeave" Handler="rectangle_MouseLeave" />
            </Style>
            ...
            <Grid Name="grid" Background="Black">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition></ColumnDefinition>
                    <ColumnDefinition></ColumnDefinition>
                    <ColumnDefinition></ColumnDefinition>
                </Grid.ColumnDefinitions>
                <Grid.RowDefinitions>
                    <RowDefinition></RowDefinition>
                    <RowDefinition></RowDefinition>
                    <RowDefinition></RowDefinition>
                    <RowDefinition></RowDefinition>
                    <RowDefinition Height="22"></RowDefinition>
                </Grid.RowDefinitions>
                <Rectangle Grid.Row="0" Grid.Column="0" Name="rect00" />
                <Rectangle Grid.Row="0" Grid.Column="1" Name="rect01" />
                <Rectangle Grid.Row="0" Grid.Column="2" Name="rect02" />
                <Rectangle Grid.Row="1" Grid.Column="0" Name="rect10" />
                <Rectangle Grid.Row="1" Grid.Column="1" Name="rect11" />
                <Rectangle Grid.Row="1" Grid.Column="2" Name="rect12" />
                <Rectangle Grid.Row="2" Grid.Column="0" Name="rect20" />
                <Rectangle Grid.Row="2" Grid.Column="1" Name="rect21" />
                <Rectangle Grid.Row="2" Grid.Column="2" Name="rect22" />
                <Rectangle Grid.Row="3" Grid.Column="0" Name="rect30" />
                <Rectangle Grid.Row="3" Grid.Column="1" Name="rect31" />
                <Rectangle Grid.Row="3" Grid.Column="2" Name="rect32" />
                <TextBlock Grid.Row="5" Grid.Column="3" Name="TB" />
            </Grid>

我对 WPF 相当陌生,所以任何见解都将不胜感激。谢谢你。

4

1 回答 1

1

这绝对是可能的,但可能并不容易。

Josh Smith 发布了这篇文章,其中包含使用ListView. 他创建了一个附加属性“IsUnderDragCursor”,并显示了一个触发器,其中“拖动光标”下的项目变为蓝色。

显然,您必须获取源代码并对其进行调整以与您的菜单和 NavButtons 一起使用,但原则都在那里。

于 2010-07-21T00:23:26.027 回答