개정판 e0cfc73c
issue #681: 스플래시 스크린 수정중
Change-Id: I4193c7951a4341ac0783a4a7e298a39fc761c995
KCOM/Views/SplashScreenWindow.xaml.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
using System.Threading.Tasks; |
|
1 |
using KCOM.Common; |
|
6 | 2 |
using System.Windows; |
7 |
using System.Windows.Controls; |
|
8 |
using System.Windows.Data; |
|
9 |
using System.Windows.Documents; |
|
10 |
using System.Windows.Input; |
|
11 |
using System.Windows.Media; |
|
12 |
using System.Windows.Media.Imaging; |
|
13 |
using System.Windows.Shapes; |
|
14 | 3 |
|
15 | 4 |
namespace KCOM.Views |
16 | 5 |
{ |
... | ... | |
21 | 10 |
{ |
22 | 11 |
public SplashScreenWindow() |
23 | 12 |
{ |
13 |
App.splashString(ISplashMessage.SPLASHSCREENWINDOW); |
|
24 | 14 |
InitializeComponent(); |
25 | 15 |
} |
26 | 16 |
|
... | ... | |
29 | 19 |
get { return progressBar.Value; } |
30 | 20 |
set { progressBar.Value = value; } |
31 | 21 |
} |
22 |
|
|
23 |
public string SplashText |
|
24 |
{ |
|
25 |
get { return splashText.Text; } |
|
26 |
set { splashText.Text = value; } |
|
27 |
} |
|
32 | 28 |
} |
33 | 29 |
} |
내보내기 Unified diff