개정판 902faaea
nuget 정리
Change-Id: I8fee2c9138a11bd4b441c0e29dd75d67ea2f63d9
KCOM/App.xaml.cs | ||
---|---|---|
21 | 21 |
using KCOM.Views; |
22 | 22 |
using System.Threading.Tasks; |
23 | 23 |
using System.Windows.Input; |
24 |
using System.Windows.Resources; |
|
24 | 25 |
|
25 | 26 |
[assembly: log4net.Config.XmlConfigurator(Watch = false)] |
26 | 27 |
namespace KCOM |
... | ... | |
63 | 64 |
/// </summary> |
64 | 65 |
public static ILog DBLogger = null; |
65 | 66 |
public static ILog FileLogger = null; |
67 |
|
|
68 |
public static StreamResourceInfo DefaultArrowCursor; |
|
69 |
|
|
70 |
public static Stream DefaultArrowCursorStream |
|
71 |
{ |
|
72 |
get { |
|
73 |
DefaultArrowCursor.Stream.Position = 0; |
|
74 |
return DefaultArrowCursor.Stream; |
|
75 |
} |
|
76 |
} |
|
66 | 77 |
|
67 | 78 |
/// <summary> |
68 | 79 |
/// VisualStudio Design Time여부 |
... | ... | |
138 | 149 |
{ |
139 | 150 |
try |
140 | 151 |
{ |
152 |
DefaultArrowCursor = Application.GetResourceStream(new Uri(@"pack://application:,,,/Resources/Cursor/customCursor2.cur", UriKind.Absolute)); |
|
153 |
|
|
141 | 154 |
splashScreen.Show(); |
142 | 155 |
|
143 | 156 |
/// create log database and table |
내보내기 Unified diff