- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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");
}
}
}
<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
为空(该列没有设置附加的行为)预期的行为是该列正常显示。
IsHidden
没有被设置。我觉得我很接近了,但我所有的研究结果都是在例子中做我在这里所做的。我对 WPF 相当陌生,所以我不知道还要搜索什么。
AncestorType={x:Type ListView}
AncestorType={x:Type UserControl}
AncestorType={x:Type Window}
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/
我在我的 C# WPF 应用程序中使用带有 GridViewColumn 的 ListView。 对于某些列,我使用了可见性管理器 (this one)。但是当第 1 列和第 3 列可见而第 2 列不
我正在尝试在 Visual Studio 2013、.net 4.5 中使用“System.Windows.Controls.GridViewColumn”,但我收到此错误: The type 'Gr
我有一个在运行时构造的 listView,即在编译时不知道这些列。 我想将 DataTemplate 应用于单元格,使 TextAlignment 属性为 TextAlignment.Right。创建
我目前正在努力获得我的 CheckBox es 在我的 GridViewColumn 中正确居中s。 我定义了一个 Style我的 CheckBox像这样:
我在 WPF 应用程序中使用 ListView 控件而不是 DataGrid。我想为我的 ListView.GridViewColumn 提供 * 宽度,但每当我为 ListView.GridView
我有以下 WPF ListView:
默认情况下,文本在 ListView 的标题中居中(不在内容单元格中!),我一直在努力使其左对齐,这里是我想出了什么: ... File 这似乎是更改标题外
我想对 GridViewColumn 中的列应用格式(对齐文本、货币格式 0000.00)。 这个想法如下:在列(GridViewColumn)中,我们可以对其应用某种格式的文本(左对齐、右对齐、
我有一个包含多个列的 GridView。我只想在右键单击特定菜单中的项目时显示 ContextMenu。这是我到目前为止所拥有的:
我有一个 GridViewColumn,其内容是一个 TextBlock: GridViewColumn column = new GridViewColumn(); column.Header =
我正在使用 ListView ( GridView / GridView 列)第一列在哪里每行仅包含复选框。而不是添加我想要的全选按钮将复选框添加到第一列的标题中。 选中标题中的复选框将选中所有其他复
我希望 GridViewColumn“from”中的信息右对齐。 这是我所做的,但它不起作用:
我想以编程方式将我的 GridViewColumns 设置为按内容自动调整大小,而不是按标题 (Width = double.NaN) 我搜索了很长时间,发现这个问题用 DataGridColumns
我有一个 GridViewColumn 和一个 HeaderTemplate,它有一个 Image 和一个 TextBlock。当用户将鼠标悬停在 Image 上时,我正在更改其不透明度,但我仍然获得
我有一个 View DisplayTestsView.cs,在那个 View 中我有
我在应用程序退出时存储列宽并在启动时恢复它们。除非用户双击标题,否则一切正常。这会导致列宽变为 double.NaN,据我所知这是一个用于自动调整大小的标志。那我就有问题了。 在调查该问题时,我注意到
当我向 ListViewItem 添加事件时, 然后在GridViewColumn里面的内容中再添加一个事件,
我正在使用 ListView 和 GridView。是否有 GridViewColumn resize 事件? 最佳答案 我将改为处理 PropertyChanged 事件。 PropertyChan
有没有办法获取 GridViewColumn 的父级 (ListView)? 我尝试过使用 LogicalTreeHelper 和 VisualTreeHelper,但没有成功。 我可以分享一个你尝试
我有一个 GridViewColumn,我已经绑定(bind)了它: Binding Path = Validated 返回枚举值,imageConverter 获取该值并返回 System.Win
我是一名优秀的程序员,十分优秀!