3

我的ListBox一个用户控件中有一个,我想在其中获取SelectedItem要在 ViewModel 中使用的 , 。由ListBox组成TextBlocks

这个问题几乎是对我的问题的直接回答,但我不明白DisneyCharacter(他的收藏类型)来自哪里,或者它与ListBox.

我的会是类型TextBlock吗?

XAMLListBox按要求:

<ListBox Margin="14,7,13,43" Name="commandListBox" Height="470" MinHeight="470" MaxHeight="470" Width="248" >
               <TextBlock Text="Set Output" Height="Auto" Width="Auto" />
               <TextBlock Text="Clear Output" Height="Auto" Width="Auto" />
               <TextBlock Text="Follow Left Tape Edge" Height="Auto" Width="Auto" />
               <TextBlock Text="Follow Right Tape Edge" Height="Auto" Width="Auto" />
               <TextBlock Text="Follow Tape Center" Height="Auto" Width="Auto" /></ListBox>
4

1 回答 1

2

由于 TextBlock 的输出是字符串,因此您将绑定到字符串属性,您将绑定到 ViewModel 或后面的代码中的字符串。

<ListBox SelectedItem = "{Binding myString}">
     .......
</ListBox>

然后在你的数据上下文中设置一个这样的字符串属性

public string myString {get; set;}

现在,每当您单击一个项目时,该文本块中的文本都将位于 myString 变量中。

如果您使用 MVVM 模型,您的属性将如下所示:

 private string _myString;

    /// <summary>
    /// Sets and gets the myString property.
    /// Changes to that property's value raise the PropertyChanged event. 
    /// </summary>
    public string myString
    {
        get
        {
            return _myString;
        }

        set
        {
            if (_myString == value)
            {
                return;
            }

            RaisePropertyChanging("myString");
            _myString = value;
            RaisePropertyChanged("myString");
        }
    }

如果您有任何问题,请告诉我。

于 2013-10-01T18:31:43.410 回答