是否可以禁用WPF中的各个列表框项?它应该显示为灰色,用户不应该选择它。
答案 0 :(得分:1)
这是一个简短的程序,向您展示如何做。它将Listbox
项与List<>
进行比较,如果未在其中找到列表框项,则会被禁用。
<Grid x:Name="LayoutRoot">
<ListBox x:Name="listbox_xaml" HorizontalAlignment="Left" Margin="52,53,0,0" VerticalAlignment="Top" Width="157" Height="141">
<ListBoxItem>Fred</ListBoxItem>
<ListBoxItem>Joe</ListBoxItem>
<ListBoxItem>Mandy</ListBoxItem>
</ListBox>
</Grid>
bool flag_active = false;
List<string> data_list = new List<string>();
data_list.Add("Fred");
data_list.Add("Mandy");
for(int i = 0;i<listbox_xaml.Items.Count; i++)
{
ListBoxItem LBI = (ListBoxItem) listbox_xaml.Items[i];
for(int x = 0 ; x < data_list.Count ; x++)
{
//if element from listbox exists in the list of data..
//it will be active..
//else it will be flagged inactive..
if (LBI.Content.ToString() == data_list[x].ToString())
{
flag_active = true;
}
}
if (flag_active == false)
{
// deactivate element in listbox
LBI.IsEnabled = false;
}
flag_active = false;
}
答案 1 :(得分:0)
肯定是 - 并得到了答复here。