簡體   English   中英

WPF 矩形顏色綁定

[英]WPF rectangle color binding

我正在嘗試編寫矩形網格,它確實會改變其對象的顏色。

  private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        for (int i = 0; i < size; i++)
        {
            main_grid.ColumnDefinitions.Add(new ColumnDefinition());
            main_grid.RowDefinitions.Add(new RowDefinition());
        }
        for (int i = 0; i < size; i++)
        {
            for (int j = 0; j < size; j++)
            {
                cells[i, j] = new Cell { state = false, col = false };
                Rectangle rect = new Rectangle();
                Grid.SetColumn(rect, j);
                Grid.SetRow(rect, i);
                rect.Fill = Brushes.Orange;
                rect.DataContext = cells[i, j];
                rect.SetBinding(OpacityProperty, "ev_opacity");
                Binding binding = new Binding("ev_col");
                binding.Converter = new BooleanToBrushConverter();
                rect.SetBinding(Rectangle.FillProperty, binding);
                main_grid.Children.Add(rect);
            }
        }
        setupTimer();
    }

如何根據col設置矩形的顏色? (fe:真-黑,假-白)

細胞類:

class Cell : INotifyPropertyChanged
    {
        private bool _state;
        private bool _Col;
        public event PropertyChangedEventHandler PropertyChanged;
        public event PropertyChangedEventHandler PropertyChanged2;
        public bool Col; //to set color
        {
            get
            {
                return _Col;
            }
            set
            {
                _Col = value;
                if (PropertyChanged2 != null)
                {
                    PropertyChanged2(this, new PropertyChangedEventArgs("event2"));
                };  
            }
        }
        public bool state //to set opacity
        {
            get
            {
                return _state;
            }
            set
            {
                _state = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("ev_opacity"));
                };
            }
        }
        public static implicit operator int(Komorka c)
        {
            return Convert.ToInt32(c.state);
        }
    }

編輯:此代碼不起作用 - 運行后,如果我單擊網格,則不會發生任何事情。

一種常見的方法是在綁定上使用ValueConverter

只需制作一個將布爾值轉換為 Brush 的 ValueConverter。

在 WPF 中,如果您有 CellControl,您還可以在 Cell 的模板中使用DataTrigger

編輯

在代碼中添加綁定:

    Binding binding = new Binding("State");
    binding.Converter = new BooleanToBrushConverter();
    _rectangle.SetBinding(Rectangle.FillProperty, binding);

綁定:

my_rect.SetBinding(Rectangle.OpacityProperty, "state_opacity");
my_rect.SetBinding(Rectangle.FillProperty,
                     new Binding()
                     {
                         Converter = new BooleanToBrushConverter(),
                         Path = new PropertyPath("state_color")
                     }
                  );

細胞類。 矩形顏色的改變取決於“state_color”變量。

class Komorka : INotifyPropertyChanged
    {
        private bool _state_opacity;
        private bool _state_color;

        public event PropertyChangedEventHandler PropertyChanged;

        public bool state_color
        {
            get { return _state_color; }
            set
            {
                _state_color = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("state_color"));
                }; 
            }
        }

        public bool state_opacity
        {
            get
            {
                return _state_opacity;
            }
            set
            {
                _state_opacity = value;
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs("state_opacity"));
                };
            }
        }
    }
}

轉換器類:

class BoolToBrush : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            if (value != null)
            {
                if ((bool)value == false)
                {
                    return new SolidColorBrush(Colors.Orange);
                }
                else
                {
                    return new SolidColorBrush(Colors.Black);
                }
            }
            else
            {
                return new SolidColorBrush(Colors.Red);
            }
        }

暫無
暫無

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

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