0

ComboBoxをリストにバインドすると同時に、テキストボックスを文字列変数にバインドしようとしています。

<Window 
        x:Class="Assignment2.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:validators="clr-namespace:Assignment2"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        DataContext="{Binding RelativeSource={RelativeSource Self}}">
    <Grid>
        <ComboBox  Height="23" HorizontalAlignment="Left" Margin="109,103,0,0" Name="StringComboBox" VerticalAlignment="Top" Width="120" SelectionChanged="SelectionChanged">
            <ComboBox.ItemsSource>
                <Binding Path="ListString" Mode="TwoWay" UpdateSourceTrigger="LostFocus"></Binding>
            </ComboBox.ItemsSource>
        </ComboBox>
        <TextBox Height="23" HorizontalAlignment="Right" Margin="0,51,250,0" Name="inputTextBox" VerticalAlignment="Top" Width="154" LostFocus="inputTextBox_LostFocus">
            <TextBox.Text>
            <Binding Path="Name1" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
                <Binding.ValidationRules>
                    <validators:RequiredFieldValidator ErrorMessage="This field Should not be empty"></validators:RequiredFieldValidator>
                    <validators:OnlyCharacterValidation ErrorMessage="Only characters allowed"></validators:OnlyCharacterValidation>
                </Binding.ValidationRules>
            </Binding>
            </TextBox.Text>
        </TextBox>
    </Grid>
</Window>

コードビハインドは次のとおりです。

public partial class MainWindow : Window, INotifyPropertyChanged
    {
        string _name = "Default Value";
        public ObservableCollection<string> ListString;
        public string Name1
        {
            get { return _name; }
            set
            {
                _name = value;
            }
        }
        public MainWindow()
        {
            ListString = new ObservableCollection<string>();
            ListString.Add("AAA");
            ListString.Add("BBB");
            ListString.Add("CCC");
            ListString.Add("DDD");

            InitializeComponent();
        }
        public event PropertyChangedEventHandler PropertyChanged;
        protected virtual void OnPropertyChanged(string propertyName)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null) 
                handler(this, new PropertyChangedEventArgs(propertyName));
        }

        private void inputTextBox_LostFocus(object sender, RoutedEventArgs e)
        {
            OnPropertyChanged("Name1");
        }

    }
}

Combobox と Textbox を同時にバインドできないようです。私はこれに対して多くの解決策を試しました。いずれにせよ、これらのうちの 1 つだけが機能します。これに対する簡単な解決策はありますか?

4

3 に答える 3

1

プロパティは、次のOnPropertyChangedようにハンドラーを呼び出す必要があります。

public string Name1
{
    get { return _name; }
    set
    {
        _name = value;
        OnPropertyChanged("Name1"); 
    }
}

private ObservableCollection<string> listString = new ObservableCollection<string>();

public ObservableCollection<string> ListString
{
    get { return listString ; }
    set
    {
        listString = value;
        OnPropertyChanged("ListString"); 
    }
}

MSDN のINotifyPropertyChanged Interfaceページの例をよく見てください。

于 2013-10-11T10:42:16.290 に答える
1

これに変更してみてください。

public string Name1
{
    get { return _name; }
    set
    {
        _name = value;
        OnPropertyChanged("Name1");
    }
}
于 2013-10-11T10:42:27.557 に答える
0
  public string Name1
    {
        get { return _name; }
        set
        {
            _name = value;
        }
    }

忘れたOnPropertyChanged("Name1");

また :

public ObservableCollection<string> ListString;

ListString は単なるフィールドではなく、プロパティである必要があります。

public ObservableCollection<string> ListString { get; set; }

最後に、この理由がわかりません:

private void inputTextBox_LostFocus(object sender, RoutedEventArgs e)
{
  OnPropertyChanged("Name1");
}
于 2013-10-11T10:39:54.573 に答える