gpt4 book ai didi

c# - 将绑定(bind)分配给附加属性以隐藏 GridViewColumn

转载 作者:行者123 更新时间:2023-12-03 10:45:08 24 4
gpt4 key购买 nike

在 WPF 中,使用 MVVM 模型,我正在努力解决我认为具有约束力的问题。我有一个 ListView旨在显示对象的集合。 ItemsSource绑定(bind)到集合和每个 GridViewColumn分离该对象的属性。此 View (UserControl )在 TabControl 中的多个选项卡中是通用的。在主窗口上。每个选项卡都需要隐藏某些列(逻辑发生在 ViewModel 中)。

我创建了一个 Behaviors 类来附加 DependecyProperties几件事情,包括属性(property)IsHidden对于GridViewColumn .考虑到这一点,这里有一个示例设置:

行为类 - 最小化示例

public static class LayoutColumn
{
public static readonly DependencyProperty HiddenProperty = DependencyProperty.RegisterAttached(
"IsHidden",
typeof(bool),
typeof(LayoutColumn));

public static bool GetIsHidden(DependencyObject obj)
{
return (bool)obj.GetValue(HiddenProperty);
}

public static void SetIsHidden(DependencyObject obj, bool isHidden)
{
obj.SetValue(HiddenProperty, isHidden);
}

public static bool IsHidden(this GridViewColumn column)
{
bool? isHidden = column.GetProperty<bool>(HiddenProperty);

// Debug
string format = "{0}.IsHidden = {1}";
if (isHidden.HasValue)
{
Console.WriteLine(format, column.Header, isHidden.Value);
}
else
{
Console.WriteLine(format, column.Header, "Null");
}

return isHidden.HasValue && isHidden.Value;
}

private static T? GetProperty<T>(this GridViewColumn column, DependencyProperty dp) where T : struct
{
if (column == null)
{
throw new ArgumentNullException("column");
}

object value = column.ReadLocalValue(dp);

if (value != null && value.GetType() == dp.PropertyType)
{
return (T)value;
}

return null;
}
} // end LayoutColumn class

public class LayoutManager
{
// Methods and logic to enforce column min/max width, hidden, fixed, etc by attaching to the ListView and GridViewColumn event handlers.
}

一个示例对象类
public class Example
{
public string Foo { get; set; }
public string Bar { get; set; }
public string Baz { get; set; }
}

查看型号
public class MyDisplayViewModel : INotifyPropertyChanged
{
private bool hidden;
private ObservableCollection<Example> examples;

...

public bool HideColumn
{
get
{
return this.hidden;
}

set
{
this.hidden = value;
this.OnPropertyChanged("HideColumn");
}
}

public ObservableCollection<Example> ExampleCollection
{
get
{
return this.examples;
}

set
{
this.examples = value;
this.OnPropertyChanged("ExampleCollection");
}
}
}

一些 XAML
<ListView
Name="LogListView"
ItemsSource="{Binding ExampleCollection}"
ListViewBehaviors:LayoutManager.Enabled="{Binding AttachProperty}">
<ListView.View>
<GridView>
<GridViewColumn
Width="Auto"
ListViewBehaviors:LayoutColumn.MinWidth="40"
ListViewBehaviors:LayoutColumn.MaxWidth="200"
ListViewBehaviors:LayoutColumn.IsHidden="True"
DisplayMemberBinding="{Binding Foo, Mode=OneWay}"
Header="Hidden Column"/>
<GridViewColumn
Width="Auto"
ListViewBehaviors:LayoutColumn.MinWidth="74"
ListViewBehaviors:LayoutColumn.MaxWidth="200"
ListViewBehaviors:LayoutColumn.IsHidden="False"
DisplayMemberBinding="{Binding Bar, Mode=OneWay}"
Header="Visible Column"/>
<GridViewColumn
Width="Auto"
ListViewBehaviors:LayoutColumn.IsFixed="True"
ListViewBehaviors:LayoutColumn.IsHidden="{Binding Path=DataContext.HideColumn, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ListView}},
Mode=OneWay}"
DisplayMemberBinding="{Binding Baz, Mode=OneWay}"
Header="Dynamic Visibility">
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>

此处演示,手动设置附加属性 IsHidden为 true 或 false 可以正确隐藏/显示关联的列。当 IsHidden为空(该列没有设置附加的行为)预期的行为是该列正常显示。

问题

默认情况下始终显示绑定(bind)列,对我来说这意味着 IsHidden没有被设置。我觉得我很接近了,但我所有的研究结果都是在例子中做我在这里所做的。我对 WPF 相当陌生,所以我不知道还要搜索什么。

编辑

我尝试了以下方法,但都失败了:
AncestorType={x:Type ListView}
AncestorType={x:Type UserControl}
AncestorType={x:Type Window}

我需要做什么才能绑定(bind) GridViewColumn ViewModel HideColumn 的附属属性(property)属性(property)?

最佳答案

正如@RohitVats 指出的那样,主要错误在于我假设隐藏列的代码运行良好。我依靠LayoutManager验证最小和最大宽度 - (在 LayoutColumn class 中)将返回它们的值(如果列被隐藏,则调整为 0),进而调整列的大小。这个想法有效,但需要更多。我需要解决这个问题的大部分内容来自 here正如@Ganesh 所建议的那样。

清理 XAML

通过很多Console.WriteLine以及更多的调试,我发现我过于复杂了绑定(bind)。

ListViewBehaviors:LayoutColumn.IsHidden="{Binding HideColumn}"

行为类的补充

只有在我对 LayoutColumn 进行了一些更改后,XAML 中的更改才能起作用。通过添加 PropertyMetadata 设置类至 HiddenProperty和另一个 DependencyProperty用于保存先前隐藏的宽度:
public static readonly DependencyProperty HiddenProperty = DependencyProperty.RegisterAttached(
"IsHidden",
typeof(bool),
typeof(LayoutColumn)
new PropertyMetadata(false, OnHiddenChanged));

public static readonly DependencyProperty VisibleWidthProperty = DependencyProperty.RegisterAttached(
"VisibleWidth",
typeof(double),
typeof(LayoutColumn),
new UIPropertyMetadata(double.NaN));

public static double GetVisibleWidth(DependencyObject obj)
{
return (double)obj.GetValue(VisibleWidthProperty);
}

public static void SetVisibleWidth(DependencyObject obj, double value)
{
obj.SetValue(VisibleWidthProperty, value);
}

private static void OnHiddenChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
GridViewColumn column = dependencyObject as GridViewColumn;

if (column != null)
{
if (e.Property == HiddenProperty)
{
bool hide = (bool)e.NewValue;

if (hide)
{
SetVisibleWidth(column, column.Width);
column.Width = 0;
}
else
{
column.Width = GetVisibleWidth(column);
}
}
}
}

就是这样!我没有使用 Converter如链接所示,因为我正在处理 bool在绑定(bind)的两端键入,但它也同样有效。希望这对其他人有帮助。

关于c# - 将绑定(bind)分配给附加属性以隐藏 GridViewColumn,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28886704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com