1

我有一个看似相对简单的问题,但在同一张纸条上,我对 WPF 仍然相对陌生,所以请客气。我的问题很简单,我在上下文菜单中的 MenuItems 上有一个 VisualStateManager,我想处理更改前景色。这是我的尝试

           **WPF PORTION**

           <VisualStateManager.VisualStateGroups>
              <VisualStateGroup Name="ExcelVisualState">
                <VisualState Name="XLSXNormal">
                  <Storyboard>
                    <ColorAnimation Storyboard.TargetProperty="Foreground" To="#FF003471" Duration="00:00:00.0010000" />
                  </Storyboard>
                </VisualState>
                <VisualState Name="XLSXDisabled">
                  <Storyboard>
                    <ColorAnimation Storyboard.TargetProperty="Foreground" To="#A99B9A71" Duration="00:00:00.0010000" />
                  </Storyboard>
                </VisualState>
              </VisualStateGroup>
            </VisualStateManager.VisualStateGroups>

            **C# Code**
            //Fires when the isEnabled method changes for my menu item
            private void MenuItem_IsEnabledChanged(object sender, DependencyPropertyChangedEventArgs e)
            {
               //If MS Excel is installed set the visual state to XLSXNormal
               if (miExportXLSX.IsEnabled)
                  VisualStateManager.GoToState(miExportXLSX, "XLSXNormal", true);
               //MS Excel is not installed so set the state to XLSXDisabled
               else
                  VisualStateManager.GoToState(miExportXLSX, "XLSXDisabled", true);
            }

我是在正确的轨道上,还是偏离了轨道?这是我第一次尝试使用视觉状态,我知道这对于这个简单的任务来说可能有点矫枉过正,但我​​必须从某个地方开始,并认为这很容易。

(如果需要任何澄清,请告诉我)

4

2 回答 2

1

我注意到你没有设置Storyboard.TargetName

尝试将其设置为适当的控件名称。

编辑:

我想我现在看到了。您的彩色动画的目标属性:不要将其设置为“前景”,而是将其更改为“颜色”。如果这样做,则必须将目标控件从 MenuItem 更改为 MenuItem 的背景画笔。

或者您可以保持原样并将目标属性更改ColorAnimationForeground.SolidColorBrush.Color

下面是一个设置ColorAnimation.

于 2013-06-03T20:46:40.283 回答
1

尝试

VisualStateManager.GoToElementState

而不是

VisualStateManager.GoToState
于 2013-06-03T21:00:54.440 回答