我是开发窗口手机的新手,我正在尝试使用切换开关来启用和禁用列表框。下面是我的代码....我正在尝试使用切换开关启用和禁用我的列表框但我无法开始工作。拜托,我在这里做错了什么?
public Page1()
{
InitializeComponent();
mylistBox.Items.Add("");
mylistBox.Items.Add("5 seconds");
mylistBox.Items.Add("10 seconds");
mylistBox.Items.Add("15 seconds");
mylistBox.Items.Add("20 seconds");
}
private void listBox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
this.ListBox1.DisabledItemSelected += ("");
}
private void ToggleSwitch_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
e.Handled = true;
}
答案 0 :(得分:0)
每次触发此事件时,都会切换ListBox
的启用状态。
private void ToggleSwitch_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
ListBox1.Enabled = !ListBox1.Enabled;
}