1

問題を単純化しました(原則は似ていますが、intを文字列にキャストしたくないことを意味します...):

MainWindow.xaml:

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:WpfApplication1="clr-namespace:WpfApplication1"
        Title="MainWindow" Height="500" Width="500">
    <Grid>

        <WpfApplication1:UserControl1 CurrentNumber="{Binding Path=TheSpecialNumber, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />

    </Grid>
</Window>

メインウィンドウには、UserControl1が表示されます。usercontrolには、プロパティCurrentNumberがあります。これは、プロパティTheSpecialNumber(ViewModel)をバインドしたいと思います。

MainWindow.xaml.cs:

namespace WpfApplication1
{
    public partial class MainWindow
    {
        private readonly ViewModel _viewModel;

        public MainWindow()
        {
            InitializeComponent();
            _viewModel = new ViewModel();
            DataContext = _viewModel;

            _viewModel.TheSpecialNumber = "8";
            _viewModel.UpdateTheSpecialNumberBinding();
        }
    }
}

ViewModel.cs:

namespace WpfApplication1
{
    class ViewModel : INotifyPropertyChanged
    {
        public string TheSpecialNumber { get; set; }

        public event PropertyChangedEventHandler PropertyChanged;

        public void UpdateTheSpecialNumberBinding()
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs("TheSpecialNumber"));
            }
        }
    }
}

UserControl1.xaml:

<UserControl x:Class="WpfApplication1.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             mc:Ignorable="d"
             Height="200" Width="300" Background="Aqua">
    <Grid Name="container">
        <ComboBox SelectedIndex="{Binding Path=CurrentNumberIndex, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
            <ComboBoxItem Height="20">0</ComboBoxItem>
            <ComboBoxItem Height="20">1</ComboBoxItem>
            <ComboBoxItem Height="20">2</ComboBoxItem>
            <ComboBoxItem Height="20">3</ComboBoxItem>
            <ComboBoxItem Height="20">4</ComboBoxItem>
            <ComboBoxItem Height="20">5</ComboBoxItem>
            <ComboBoxItem Height="20">6</ComboBoxItem>
            <ComboBoxItem Height="20">7</ComboBoxItem>
            <ComboBoxItem Height="20">8</ComboBoxItem>
            <ComboBoxItem Height="20">9</ComboBoxItem>
        </ComboBox>
    </Grid>
</UserControl>

UserControlはComboBoxです。これは10個のアイテムがあります。プロパティCurrentNumberと同じ番号のアイテムを常に表示したい。したがって、現在の番号インデックスのバインディング。

UserControl1.xaml.cs:

using System;
using System.ComponentModel;
using System.Windows;

namespace WpfApplication1
{
    public partial class UserControl1 : INotifyPropertyChanged
    {
        public static readonly DependencyProperty CurrentNumberProperty = DependencyProperty.Register("CurrentNumber", typeof(string), typeof(UserControl1));

        public UserControl1()
        {
            InitializeComponent();
            container.DataContext = this;

            CurrentNumber = "5";
        }

        public string CurrentNumber
        {
            get { return (string)GetValue(CurrentNumberProperty); }
            set
            {
                SetValue(CurrentNumberProperty, value);
                OnPropertyChanged("CurrentNumberIndex");
            }
        }

        public int CurrentNumberIndex
        {
            get
            {
                return Convert.ToInt32(CurrentNumber);
            }
            set
            {
                CurrentNumber = Convert.ToString(value);
            }
        }

        #region Implementation of INotifyPropertyChanged

        public event PropertyChangedEventHandler PropertyChanged;

        private void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }

        #endregion Implementation of INotifyPropertyChanged
    }
}

今私の質問。メインウィンドウで(ViewModelを介して)セット8を表示した場合、ComboBoxアイテムのみがコンテンツ0で表示されるのはなぜですか?現在の番号のセッターにブレークポイントを作成しても、1回だけ停止します。つまり、5で停止しますが、8では停止しません。

4

3 に答える 3

3

CurrentNumber=5 を手動で設定することにより、TheSpecialNumber と CurrentNumber の間のバインディングを「破棄」することができます。この部分を削除して、もう一度やり直してください。

編集:わかりました、これがうまくいかない場合は、次のことを試してください:

  1. PropertyMetaData に新しい PropertyChangedCallback を追加します。

    public static readonly DependencyProperty CurrentNumberProperty = DependencyProperty.Register("CurrentNumber", typeof(string), typeof(UserControl1), new PropertyMetadata( new PropertyChangedCallback(CurrentNumberPropertyChanged))); 
    
  2. このメソッドで次のように CurrentNumber を設定します。

    private static void CurrentNumberPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs dependencyPropertyChangedEventArgs)
    {
        UserControl1 uc1 = (UserControl1)dependencyObject;
        uc1.CurrentNumber = (string)dependencyPropertyChangedEventArgs.NewValue;
    }
    
于 2012-09-26T07:25:55.917 に答える
1

CurrentNumber は WPF プロパティです。これは、WPF がそのプロパティを使用する場合、CurrentNumber のゲッター/セッターを渡すことを意味します。

したがって、基本的に TheSpecialNumber を設定すると、この部分は実行されません。

 SetValue(CurrentNumberProperty, value);
 OnPropertyChanged("CurrentNumberIndex");

WPF プロパティの UI プロパティ メタデータに自分自身をフックします。

于 2012-09-26T06:37:07.563 に答える
0
<ComboBox SelectedIndex="{Binding Path=CurrentNumberIndex, RelativeSource={RelativeSource Mode=Self}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>

SelectedIndex のバインディングでは、バインディング システムは、ViewModel である UserControl DataContext の CurrentNumberIndex プロパティを探しますが、このプロパティが見つからないため、RelativeSource を Self に設定して動作させます。これが役立つことを願っています。

于 2012-09-26T06:38:49.140 に答える