728x90
반응형
WPF & C# - 배경 색상 및 이미지 변경하기 ( Background / color / bitmapimage / SolidColorBrush / BrushConverter / ColorConverter ) |
Background 색상 변경하기
1 2 3 4 | Color clr = Color.FromRgb(0, 255, 255); // Color clor = Colors.Red; SolidColorBrush brush = new SolidColorBrush(clr); Background = brush; | cs |
Background 이미지 변경하기
1 2 3 4 5 6 7 | OpenFileDialog dialog = new OpenFileDialog(); if (dialog.ShowDialog().GetValueOrDefault()) { BitmapImage bi = new BitmapImage(new Uri(dialog.FileName)); ImageBrush ib = new ImageBrush(bi); this.Background = ib; } | cs |
728x90
반응형