wpf-基础-命令-命令参数
程序员文章站
2022-06-07 15:13:43
...
参考的是书籍《深入浅出WPF》。运行环境:win10+vs2019。除某些截图中的代码外,其他均已本地测试通过。
如果界面上有两个按钮,都使用New命令,如何区分?
因为New是单例啊。区分方法是使用CommandParameter。命令源是实现了ICommandSource接口的对象,它会有一个叫CommandParameter的属性,它带的信息足以区分同一名称的命令。
实例:同一命令使用命令参数区分
Name框为空时,两个按钮都禁用。
Name后面的框不为空时,按不同的按钮打印不同字符串。
前台
<Grid Margin="6">
<Grid.RowDefinitions>
<RowDefinition Height="24"/>
<RowDefinition Height="4"/>
<RowDefinition Height="24"/>
<RowDefinition Height="4"/>
<RowDefinition Height="24"/>
<RowDefinition Height="4"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock Text="Name:" VerticalAlignment="Center" HorizontalAlignment="Left" Grid.Row="0"/>
<TextBox x:Name="nameTextBox" Margin="60,0,0,0" Grid.Row="0"/>
<Button Content="New Teacher" Command="New" CommandParameter="Teacher" Grid.Row="2"/>
<Button Content="New Student" Command="New" CommandParameter="Student" Grid.Row="4"/>
<ListBox x:Name="listBoxNewItems" Grid.Row="6"/>
</Grid>
<Window.CommandBindings>
<CommandBinding Command="New" CanExecute="CommandBinding_CanExecute"
Executed="CommandBinding_Executed"/>
</Window.CommandBindings>
后台
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
//下面这两个函数是前端new的时候vs生成的
private void CommandBinding_CanExecute(object sender, CanExecuteRoutedEventArgs e)
{
if (string.IsNullOrEmpty(this.nameTextBox.Text))
e.CanExecute = false;
else
e.CanExecute = true;
}
private void CommandBinding_Executed(object sender, ExecutedRoutedEventArgs e)
{
string name = this.nameTextBox.Text;
if (e.Parameter.ToString() == "Teacher")
this.listBoxNewItems.Items.Add(string.Format("New Teacher:{0}, 老师", name));
if (e.Parameter.ToString() == "Student")
this.listBoxNewItems.Items.Add(string.Format("New Student:{0}, 学生", name));
}
}
如果一个UI所关联的命令有可能根据某些条件改变,则可以使用Binding:
<Button x:Name="dynamicCmdBtn" Command="{Binding Path=ppp, Source=sss}" Content="cmd" />
不过大多数命令按钮都有相对应的图标表示固定含义,所以很少需要这样改变。