0

这是我的 xaml 的一部分:

<DataGrid ItemsSource="{Binding listImages, UpdateSourceTrigger=PropertyChanged}" AutoGenerateColumns="False" Name="dataGrid1" Height="341" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="10,10,10,0" Width="225" CanUserResizeRows="False" CanUserResizeColumns="False" CanUserReorderColumns="False" CanUserAddRows="False" IsHitTestVisible="True" OverridesDefaultStyle="False" SelectedIndex="0" SelectionUnit="FullRow" SelectionMode="Single">
<DataGrid.InputBindings>

    <KeyBinding Key="a" Command="{Binding Path=KeyPressed}"/>                    
    <KeyBinding Key="s" Command="{Binding Path=KeyPressed}"/>
    <KeyBinding Key="d" Command="{Binding Path=KeyPressed}"/> 

</DataGrid.InputBindings>
<DataGrid.RowStyle>
    <Style TargetType="DataGridRow">
        <Setter Property="Background" Value="{Binding rowColor}"/>
    </Style>
</DataGrid.RowStyle>
<DataGrid.Columns>                   
    <DataGridTextColumn Header="ImageName" Binding="{Binding imageName}" Width="112" />
    <DataGridTextColumn Header="Tag" Binding="{Binding tag}" Width="110" />
</DataGrid.Columns>

我想加载一个 .xaml ,其中只定义了这个 datagrid 或者更好的是只定义了KeyBindings。这是因为用户可以更改可以绑定哪些键。

示例:Tom 想要使用键 z,x,c 而不是 a,s,d。为此,他编辑默认 xml/xaml(位于某处)并更改 KeyBinding 的Key参数并加载它。

新的 xml/xaml 将如下所示:

<DataGrid ItemsSource="{Binding listImages, UpdateSourceTrigger=PropertyChanged}" AutoGenerateColumns="False" Name="dataGrid1" Height="341" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="10,10,10,0" Width="225" CanUserResizeRows="False" CanUserResizeColumns="False" CanUserReorderColumns="False" CanUserAddRows="False" IsHitTestVisible="True" OverridesDefaultStyle="False" SelectedIndex="0" SelectionUnit="FullRow" SelectionMode="Single">
<DataGrid.InputBindings>

    <KeyBinding Key="z" Command="{Binding Path=KeyPressed}"/>                    
    <KeyBinding Key="x" Command="{Binding Path=KeyPressed}"/>
    <KeyBinding Key="c" Command="{Binding Path=KeyPressed}"/> 

</DataGrid.InputBindings>
<DataGrid.RowStyle>
    <Style TargetType="DataGridRow">
        <Setter Property="Background" Value="{Binding rowColor}"/>
    </Style>
</DataGrid.RowStyle>
<DataGrid.Columns>                   
    <DataGridTextColumn Header="ImageName" Binding="{Binding imageName}" Width="112" />
    <DataGridTextColumn Header="Tag" Binding="{Binding tag}" Width="110" />
</DataGrid.Columns>

有可能遵循 MVVM 模式吗?

4

1 回答 1

0

我不会将用户的键绑定选择保留为 XAML。Binding标签等对用户没有任何意义。

而是以其他更友好的方式保留键绑定,甚至可能是一个简单的 ini 样式文本文件,例如:

Command1Key=z
Command2Key=x
Command3Key=c

将它们加载到 ViewModel 中后,您可以将它们作为InputBindingCollection属性公开给视图,然后视图可以绑定到该属性。

于 2012-09-05T11:18:46.983 回答