728x90
728x170
/// <summary>
/// Random Color
/// </summary>
/// <returns></returns>
private Brush RandomBrush()
{
Brush result = Brushes.Transparent;
Random random = new Random();
Type brushesType = typeof(Brushes);
PropertyInfo[] properties = brushesType.GetProperties();
int randomValue = random.Next(properties.Length);
result = (Brush)properties[randomValue].GetValue(null, null);
return result;
}
728x90
그리드형
'C# > WPF' 카테고리의 다른 글
[WPF] Flat Button (0) | 2020.12.01 |
---|---|
[WPF] GradientStopCollection 의 Offset 컬러 구하기 (0) | 2020.10.20 |
[WPF] 이미지를 Rect 기준으로 잘라내는 함수 (0) | 2020.08.20 |
[WPF] ContextMenu 선택 후 ContextMenu 숨겨지지 않게 하기 (0) | 2020.08.03 |
[WPF] Image 붙이기 (0) | 2020.07.27 |