仍在学习视觉工作室及其元素: - )
我的问题如下......
我如何提取"例如"使用xaml资源设计器的[clientname]会话外对象?
它自己的会话是" CurrentSession"实际上我希望这是动态的,这样我就可以在任何listview上使用我的listview模板。我一直在关注Here这些课程,这对我帮助很大,但我似乎无法从会话对象中解决如何做到这一点,任何帮助都会非常感激: - )
我的xaml设计师的一部分用于listview ....
<DataTemplate x:Key="templateListBoxItem">
<Grid Margin="5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Border Grid.Column="0"
Grid.Row="0"
Grid.RowSpan="2"
Margin="0,0,10,0">
<Image Source="{DynamicResource IMS}"
Stretch="Fill"
Height="20"
Width="20"/>
</Border>
<ItemsControl ItemsSource="{Binding CurrentSession[clientName]}">
<TextBlock Text="{Binding clientName}"
Grid.Row="0"
Grid.Column="1"
FontWeight="Bold"/>
</ItemsControl>
</Grid>
</DataTemplate>