Dreamine.MVVM.Wpf 1.0.3
Dreamine.MVVM.Wpf 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
DreamineWpfOptions.cs
이 파일의 문서화 페이지로 가기
1using System;
2
3namespace Dreamine.MVVM.Wpf
4{
13 public sealed class DreamineWpfOptions
14 {
23 public bool EnableGlobalAutoWireOnLoaded { get; set; }
24
33 public bool RegisterDefaultServices { get; set; }
34
43 public bool EnableAutoNavigatorRegistration { get; set; }
44
53 public string DefaultRegionName { get; set; } = "SubPage";
54
63 public double FallbackWindowWidth { get; set; } = 800;
64
73 public double FallbackWindowHeight { get; set; } = 600;
74
92 {
93 return new DreamineWpfOptions
94 {
98 DefaultRegionName = "SubPage"
99 };
100 }
101 }
102}
static DreamineWpfOptions CreateDefault()