개정판 902faaea
nuget 정리
Change-Id: I8fee2c9138a11bd4b441c0e29dd75d67ea2f63d9
KCOM/MainWindow.xaml.cs | ||
---|---|---|
65 | 65 |
//ViewerDataModel.Instance.ImageViewPath_C.UriSource = null; |
66 | 66 |
} |
67 | 67 |
|
68 |
public static BitmapImage CursorChange() |
|
69 |
{ |
|
70 |
BitmapImage bmp = new BitmapImage(); |
|
71 |
bmp.BeginInit(); |
|
72 |
bmp.StreamSource = System.Windows.Application.GetResourceStream(new Uri("/KCOM;Component/Resources/Cursor/customCursor2.cur", UriKind.Relative)).Stream; |
|
73 |
return bmp; |
|
74 |
} |
|
75 |
|
|
76 | 68 |
public void DialogMessage_Alert(string content, string header) |
77 | 69 |
{ |
78 | 70 |
Telerik.Windows.Controls.DialogParameters parameters = new Telerik.Windows.Controls.DialogParameters() |
... | ... | |
97 | 89 |
InitializeComponent(); |
98 | 90 |
|
99 | 91 |
//cursor change |
100 |
this.Cursor = new Cursor(CursorChange().StreamSource);
|
|
92 |
this.Cursor = new Cursor(App.DefaultArrowCursorStream);
|
|
101 | 93 |
|
102 | 94 |
var point = GetScreenCenter(); |
103 | 95 |
|
내보내기 Unified diff