簡體   English   中英

MVVM動態設置GridViewColumn寬度

[英]MVVM Setting GridViewColumn width dynamically

在我的mvvm應用程序中,我有一個listview。 我喜歡顯示/隱藏列表視圖的某些列,具體取決於復選框“顯示所有列”的狀態(此處:Col1應顯示/隱藏)。

這是我非常簡化的代碼。 怎么了?! 顯然這不起作用!

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApplication1"
        mc:Ignorable="d"
        Title="MainWindow" Height="200" Width="185">

  <Window.Resources>
    <local:ConverterHideListViewColumn x:Key="ConverterHideListViewColumn" />
  </Window.Resources>

  <Grid>
    <ListView Height="100" Width="100">
      <ListView.View>
        <GridView>
          <GridViewColumn Header="Col0" Width="40"/>
          <GridViewColumn Header="Col1" Width="{Binding ShowAllColumns, Converter={StaticResource ConverterHideListViewColumn}}"/>
        </GridView>
      </ListView.View>
    </ListView>

    <CheckBox 
      Content="Show all columns"
      IsChecked="{Binding ShowAllColumns, Mode=TwoWay}"
      Margin="40,140,0,0">
    </CheckBox>

  </Grid>
</Window>

using System;
using System.ComponentModel;
using System.Windows;
using System.Windows.Data;

namespace WpfApplication1
{
  public partial class MainWindow : Window
  {
    VM _vm;

    public MainWindow ()
    {
      InitializeComponent ();
      _vm = new VM ();
      this.DataContext = _vm;
    }
  }

  /// <summary>
  /// Dummy Viewmodel
  /// </summary>
  public class VM : INotifyPropertyChanged
  {
    private bool _bShowAllColumns;
    public event PropertyChangedEventHandler PropertyChanged;

    public VM ()
    {
      ShowAllColumns = true;
    }

    public bool ShowAllColumns
    {
      get { return _bShowAllColumns; }
      set { _bShowAllColumns = value; }
    }

    private void OnPropertyChanged (string propertyName)
    {
      var handler = PropertyChanged;
      if (handler != null)
        handler (this, new PropertyChangedEventArgs (propertyName));
    }
  }


  /// <summary>
  /// Converter for setting the ListView-Column width, depending on value VM.ShowAllColumns
  /// </summary>
  class ConverterHideListViewColumn : IValueConverter
  {
    public object Convert (object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
      bool   bShowAllColumns = false;
      double dWidth          = 0;

      if (value is bool)
      {
        bShowAllColumns = (bool) value;
        dWidth = bShowAllColumns? 40 : 0;
      }

      return dWidth;
    }

    public object ConvertBack (object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
      throw new NotSupportedException ();
    }
   }
}

這就是你所需要的......

public bool ShowAllColumns
{
    get { return _bShowAllColumns; }
    set
    {
        if (_bShowAllColumns != value)
        {
            _bShowAllColumns = value;
            OnPropertyChanged("ShowAllColumns");
        }
    }
}

GridViewColumn未添加到可視樹中,並且不會繼承任何DataContext因此您無法在不使用此處建議的BindingProxy類的情況下將其Width屬性綁定到視圖模型的source屬性: httpsBindingProxy 2011/03/21 / WPF的如何對綁定到數據時最的datacontext此結果未繼承/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM