我有以下表示 UI 状态的枚举(我用它来启用和禁用 UI 元素):
enum Mode
{
EDIT, RUN, REVIEW
}
我想将 Mode.EDIT 传递给 CommandParam 中的命令:
<Button Grid.Column="6" VerticalAlignment="Top Command="{Binding Path=ChangeMode}"
CommandParameter="{StaticResource local:Mode.RUN}" />
但我不知道如何声明它。正如您在按钮声明中看到的,我尝试使用StaticResource但它失败了。我对 SL4 和 C# 很陌生,所以我想我错过了一些东西。