3

WPFとMVVMの学習を始めたばかりです。やりたいことは次のとおりです。

ツリーから任意のノードを選択して使用すると、そのノードの説明がテキストボックスに表示されます。これがXMAL(ツリービューではなくコンボボックスで機能していた)です

      <Grid Margin="0,0,0,33" Name="grid1">
        <TreeView   HorizontalAlignment="Left" 
            Margin="24,47,0,6" 
            Name="treeView1" 
            Width="120"
            ItemsSource="{Binding Path=.}">        

            </TreeView>
        <TextBox
            Margin="150,47,24,61" 
            Name="textBox1"
            Text="{Binding Path=CurrentItem.Description}"
                 />
    </Grid>
4

1 に答える 1

5

この方法で試してください

<TreeView   HorizontalAlignment="Left" x:Name="treeView1"
        Margin="24,47,0,6" 
        Width="120"
        ItemsSource="{Binding Path=.}"   >
        <TreeViewItem></TreeViewItem>
    </TreeView>
    <TextBox
        Margin="150,47,24,61" 
        Name="textBox1"
        Text="{Binding Path=SelectedItem.Description, ElementName=treeview1}"
             />

TreeViewには読み取り専用のSelectedItemプロパティがあります。これがお役に立てば幸いです。

于 2012-07-13T05:06:04.667 に答える