Dreamine.UI.Wpf.Controls
1.0.1
Dreamine.UI.Wpf.Controls 사용자 인터페이스 기능과 구성 요소를 제공합니다.
Toggle main menu visibility
로딩중...
검색중...
일치하는것 없음
PlaceholderView.cs
이 파일의 문서화 페이지로 가기
1
using
System.Windows;
2
using
System.Windows.Controls;
3
using
System.Windows.Media;
4
5
namespace
Dreamine.UI.Wpf.Controls.ViewRegion
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
}
Dreamine.UI.Wpf.Controls.ViewRegion
Definition
PlaceholderView.cs:6
Dreamine.UI.Wpf.Controls.ViewRegion.PlaceholderView.PlaceholderView
PlaceholderView(string message)
Definition
PlaceholderView.cs:33
Navigation
PlaceholderView.cs
다음에 의해 생성됨 :
1.17.0