markus / KCOM / Views / SplashScreenWindow.xaml.cs @ e0cfc73c
이력 | 보기 | 이력해설 | 다운로드 (679 Bytes)
1 |
using KCOM.Common; |
---|---|
2 |
using System.Windows; |
3 |
|
4 |
namespace KCOM.Views |
5 |
{ |
6 |
/// <summary> |
7 |
/// SplashScreenWindow.xaml에 대한 상호 작용 논리 |
8 |
/// </summary> |
9 |
public partial class SplashScreenWindow : Window |
10 |
{ |
11 |
public SplashScreenWindow() |
12 |
{ |
13 |
App.splashString(ISplashMessage.SPLASHSCREENWINDOW); |
14 |
InitializeComponent(); |
15 |
} |
16 |
|
17 |
public double Progress |
18 |
{ |
19 |
get { return progressBar.Value; } |
20 |
set { progressBar.Value = value; } |
21 |
} |
22 |
|
23 |
public string SplashText |
24 |
{ |
25 |
get { return splashText.Text; } |
26 |
set { splashText.Text = value; } |
27 |
} |
28 |
} |
29 |
} |