我有一个转换为列表的 XML 文件。PaintClass 有几个参数,例如颜色(红色或橙色或蓝色)或纹理(平滑或光泽)等。
现在我有几个复选框,因此用户可以确定他想看到的 PaintClass。例如,他可以同时选择红色、橙色和蓝色,然后每个 PaintClass 都应该出现。但是当他选择平滑复选框时,只有具有平滑纹理的红色/蓝色/橙色油漆应该显示出来。
最好的方法是什么而不是大量的 If 语句?
亲切的问候,尼尔斯
我有一个转换为列表的 XML 文件。PaintClass 有几个参数,例如颜色(红色或橙色或蓝色)或纹理(平滑或光泽)等。
现在我有几个复选框,因此用户可以确定他想看到的 PaintClass。例如,他可以同时选择红色、橙色和蓝色,然后每个 PaintClass 都应该出现。但是当他选择平滑复选框时,只有具有平滑纹理的红色/蓝色/橙色油漆应该显示出来。
最好的方法是什么而不是大量的 If 语句?
亲切的问候,尼尔斯
一个简单的解决方案是:
List<Color> allowedColors = new List<Color>();
if (redCheckBox.IsChecked)
allowedColors.Add(Color.Red);
.
.
.
List<Texture> allowedTextures = new List<Texture>();
if (smoothCheckBox.IsChecked)
allowedTextures.Add(Texture.Smooth);
.
.
.
filtered = paintList.Where( p => allowedColors.Contains(p.Color) &&
allowedTextures.Contains(p.Texture));
另一种方法是将颜色值存储在复选框的 Tag 属性中,然后遍历复选框:
redCheckBox.Tag = Color.Red;
blueCheckBox.Tag = Color.Blue;
// etc...
List<Color> colors = new List<Color>();
foreach (Object control in checkboxContainer.Children)
{
var c = (control as CheckBox);
if ( null == c )
continue;
colors.Add(c.Tag as Color);
}
在您的复选框处理程序中是这样的:
List<Color> colorsToDisplay;
//add all colors that are checked to colorsToDisplay
//..
List<PaintClass> toDisplay =
paintClassList.
.Where(p => colorsToDisplay.Any(c => c == p.Color)
&& (smoothCheckbox.Checked ? p.IsSmooth : true ));