gpt4 book ai didi

c# - 如何将 MainWindow.xaml 中的 8 个复选框绑定(bind)到 ViewModel 字节属性的每一位?

转载 作者:行者123 更新时间:2023-12-03 10:56:10 24 4
gpt4 key购买 nike

我对 WPF 和 MVVM 相当陌生。我想要实现的是我的 GUI 中有八个复选框,我需要将它们转换为单字节值,以便我可以在任何给定时间串行传输它。我是否必须创建 8 个 bool 属性,然后将它们转换为字节属性?

这是我目前的 XAML。我已将每个复选框单独绑定(bind)到一个字节属性。我可以以某种方式将它们全部绑定(bind)到一个属性以制作一个字节,其中每个复选框代表一个位。

<Window x:Class="ModelClassTest.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:prism="http://prismlibrary.com/"
prism:ViewModelLocator.AutoWireViewModel="True"
Title="{Binding Title}" Height="350" Width="525">
<Grid>
<ContentControl prism:RegionManager.RegionName="ContentRegion" />
<CheckBox Margin="10,10,0,0" Content="Bit 0" IsChecked="{Binding Path Bit0}"/>
<CheckBox Margin="10,30,0,0" Content="Bit 1" IsChecked="{Binding Path Bit1}"/>
<CheckBox Margin="10,50,0,0" Content="Bit 2" IsChecked="{Binding Path Bit2}"/>
<CheckBox Margin="10,70,0,0" Content="Bit 3" IsChecked="{Binding Path Bit3}"/>
<CheckBox Margin="10,90,0,0" Content="Bit 4" IsChecked="{Binding Path Bit4}"/>
<CheckBox Margin="10,110,0,0" Content="Bit 5" IsChecked="{Binding Path Bit5}"/>
<CheckBox Margin="10,130,0,0" Content="Bit 6" IsChecked="{Binding Path Bit6}"/>
<CheckBox Margin="10,150,0,0" Content="Bit 7" IsChecked="{Binding Path Bit7}"/>
<Button Width="100" Height="20" Margin="10,173,408.723,128.076" Content="Transmit" Command="{Binding ClickMe}"/>
</Grid>
</Window>

最佳答案

您可以创建 ItemsControl,而不是手动创建复选框。对于你的字节的所有位。用单个位列表表示字节。

为单个位创建一个 View 模型类:

// The ViewModelBase base class implements INotifyPropertyChanged
// and provides the SetProperty method
class Bit : ViewModelBase
{
private bool _isSet;

public Bit(int bitNumber)
{
BitNumber = bitNumber;
}

public int BitNumber { get; }

public bool IsSet
{
get => _isSet;
set => SetProperty(ref _isSet, value);
}
}

这是您在主视图模型中的字节:
public IReadOnlyCollection<Bit> Byte { get; }
= new List<Bit>(Enumerable.Range(0, 8).Select(v => new Bit(v)));

在主视图模型中,创建 ICommand这会将您的位列表转换为字节并使用此值。或者,创建 byte 类型的属性这将基于单个位即时计算值。下面是实现的样子:
void UseByte()
{
var byteValue = Byte.Select((v, i) => (1 << i) * (v.IsSet ? 1 : 0)).Sum();

// use the value as needed
}

这就是您的 View 的样子:
<ItemsControl ItemsSource="{Binding Byte}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<CheckBox IsChecked="{Binding IsSet}">
<TextBlock>
<Run Text="Bit "/><Run Text="{Binding BitNumber, Mode=OneTime}"/>
</TextBlock>
</CheckBox>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>

关于c# - 如何将 MainWindow.xaml 中的 8 个复选框绑定(bind)到 ViewModel 字节属性的每一位?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60668906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com