我有以下xaml代码:
array ref 1: ARRAY(0x1e1b1c0)
array ref 2: ARRAY(0x1e1b190)
array ref 3: SCALAR(0x1e1b280)
array ref 4: SCALAR(0x1e10c40)
现在我想获取所选项目名称(!),在这种情况下" test_item"在selection_changed事件中。
我试过了:
<ListBox SelectionMode="Single" Name="MenuBox" SelectionChanged="MenuBox_SelectionChanged">
<ListBoxItem x:Name="test_item">
<StackPanel Orientation="Horizontal">
<TextBlock Padding="10 0 0 0" FontSize="20" Text="lalal" VerticalAlignment ="Center"/>
</StackPanel>
</ListBoxItem>
</ListBox>
此字符串告诉我以下内容:&#34; Windows.UI.Xaml.Controls.ListBoxItem&#34;。 我需要ListBoxItem的名称来相应地更改Scenario。
答案 0 :(得分:0)
您需要获取ListBoxItem的name属性,如下所示:
var item = ((ListBoxItem)MenuBox.SelectedItem).Name;