0

我有一个使用 ShowDialog 显示的窗口。我试图从用户那里获得的值之一是以 GB 或 TB 为单位的大小。所以我有两个控件,一个来自WPF 扩展工具包的 IntegerUpDown和一个 ComboBox:

<xctk:IntegerUpDown Name="SizeN" Minimum="1" Maximum="1023" Increment="1" Value="100"/>
<ComboBox Name="SizeS" SelectedIndex="0">
    <ComboBoxItem>GB</ComboBoxItem>
    <ComboBoxItem>TB</ComboBoxItem>
</ComboBox>

我将对话框的 DataContext 设置为自身。我已经定义了容量属性:

public ulong Capacity { get; set; }

public CustomWindow()
{
    InitializeComponent();
    DataContext = this;
}

我已经创建了一个 IMultiValueConverter,PowerConverter,它接受一个 int 和一个字符串并返回 ulong。我认为正确的 MultiBinding 是:

<Window.Resources>
    <local:PowerConverter x:Key="CapacityConverter" />
</Window.Resources>

<MultiBinding Converter="{StaticResource CapacityConverter}">
    <Binding ElementName="SizeN" Path="Value" />
    <Binding ElementName="SizeS" Path="SelectedValue" />
</MultiBinding>

我不知道如何将此绑定分配给对话框上的容量属性。我希望 WPF 自动为我设置容量属性。有任何想法吗?

4

1 回答 1

0

我必须在 CustomWindow 上将 Capacity 转换为 DependencyProperty,在 ComboBox 上设置 SelectedValuePath 属性,并在样式中将绑定分配给 Capacity。

XAML:

<Window xmlns:="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:xctk="clr-namespace:Xceed.Wpf.Toolkit;assembly=WPFToolkit.Extended"
        xmlns:local="clr-namespace:MyProject"
        x:Class="MyProject.CustomWindow" Title="CustomWindow"
        DataContext="{Binding RelativeSource={RelativeSource Self}}">
    <Window.Resources>
        <local:PowerConverter x:Key="CapacityConverter" />
    </Window.Resources>
    <Window.Style>
        <Style TargetType="{x:Type local:CustomWindow}">
            <Setter Property="Capacity">
                <Setter.Value>
                    <MultiBinding Converter="{StaticResource CapacityConverter}"
                                  Mode="TwoWay">
                        <Binding  ElementName="SizeNumber" Path="Value"
                                  Mode="TwoWay" />
                        <Binding  ElementName="SizeSuffix" Path="SelectedValue"
                                  Mode="TwoWay" />
                    </MultiBinding>
                </Setter.Value>
            </Setter>
        </Style>
    </Window.Style>
    <StackPanel>
        <xctk:IntegerUpDown Name="SizeNumber" Minimum="1" Maximum="1023" Increment="1"
                            Value="100"/>                        
        <ComboBox Name="SizeSuffix" SelectedIndex="0" SelectedValuePath="Content">
            <ComboBoxItem>GB</ComboBoxItem>                        
            <ComboBoxItem>TB</ComboBoxItem>                        
        </ComboBox>
    </StackPanel>
</Window>

后面的代码:

public partial class CustomWindow : Window
{
    public CustomWindow()
    {
        InitializeComponent();
    }

    public static readonly DependencyProperty CapacityProperty =
        DependencyProperty.Register("Capacity", typeof(ulong), typeof(CustomWindow));

    public ulong Capacity
    {
        get
        {
            return (ulong)GetValue(CapacityProperty);
        }
        set
        {
            SetValue(CapacityProperty, value);
        }
    }
}
于 2012-09-25T20:12:26.843 回答