Dreamine.UI.Wpf.Controls 1.0.1
Dreamine.UI.Wpf.Controls 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
PlaceholderView.cs
이 파일의 문서화 페이지로 가기
1using System.Windows;
2using System.Windows.Controls;
3using System.Windows.Media;
4
6{
15 public class PlaceholderView : UserControl
16 {
33 public PlaceholderView(string message)
34 {
35 this.Content = new TextBlock
36 {
37 Text = message,
38 Foreground = Brushes.Red,
39 FontSize = 18,
40 FontWeight = FontWeights.Bold,
41 HorizontalAlignment = HorizontalAlignment.Center,
42 VerticalAlignment = VerticalAlignment.Center,
43 TextWrapping = TextWrapping.Wrap,
44 TextAlignment = TextAlignment.Center,
45 Margin = new Thickness(20)
46 };
47 }
48 }
49}