1

我的 GUI 应用程序上有多个复选框,可以为每个相同类型的对象启用自动更新。因此,如果选中该复选框,则 isautoupdate 属性设置为 true,否则设置为 false。我有一个按钮需要在所有复选框上启用/禁用自动更新。如何检查所有对象的 isautoupdate 属性是否设置为 true 或 false。

我当前的实现是使用一个 foreach 循环,该循环遍历每个对象并检查 isautoupdate 是否设置为 true 或 false,但我得到了一个切换效果,如果选中了某些复选框,它将取消选中它们,反之亦然。

在.cs

foreach (MxL_GUI_ChannelSettingAndStatusItem item in theGUIManager.theDevice.channelCollection)
{
    if (!item.IsAutoUpdated)
    {
        item.IsAutoUpdated = true;
    }
    else
    {
        item.IsAutoUpdated = false;
    }
}
4

2 回答 2

3

如果您不希望您的从复选框切换,那么不要编写切换它们的代码。相反,请检查IsChecked主复选框的属性并将该值应用于IsAutoUpdated项目的所有属性:

foreach (MxL_GUI_ChannelSettingAndStatusItem item in ...)
{
    item.IsAutoUpdated = masterCheckbox.IsChecked.Value;
}
于 2013-03-29T20:05:16.727 回答
1

我不确定我是否完全理解您的要求。如果要检测所有项目是否设置为 true 或 false,请使用:

var items = theGUIManager.theDevice.channelCollection;

// If you need to know if for all items IsAutoUpdated = true
bool allChecked = items.All(item => item.IsAutoUpdated);

// If you need to know if they're all false
bool noneChecked = !items.Any(item => item.IsAutoUpdated);

然后更新您的项目,例如:

foreach(var item in items) { item.IsAutoUpdated = !allChecked; }
于 2013-03-29T20:20:10.660 回答