markus / KCOM / MainWindow.xaml.cs @ 76dc223b
이력 | 보기 | 이력해설 | 다운로드 (15.5 KB)
1 | 787a4489 | KangIngu | using KCOM.Common; |
---|---|---|---|
2 | 32af2c3b | djkim | using KCOM.Controls; |
3 | 264c9309 | ljiyeon | using KCOM.Views; |
4 | 787a4489 | KangIngu | using KCOMDataModel; |
5 | using KCOMDataModel.DataModel; |
||
6 | b0fb3ad7 | ljiyeon | using MarkupToPDF.Common; |
7 | 5529d2a2 | humkyung | using MarkupToPDF.Controls.Parsing; |
8 | b0fb3ad7 | ljiyeon | using MarkupToPDF.Serialize.Core; |
9 | using MarkupToPDF.Serialize.S_Control; |
||
10 | 787a4489 | KangIngu | using System; |
11 | using System.Collections.Generic; |
||
12 | 264c9309 | ljiyeon | using System.ComponentModel; |
13 | using System.Diagnostics; |
||
14 | 6707a5c7 | ljiyeon | using System.IO; |
15 | 787a4489 | KangIngu | using System.Linq; |
16 | 264c9309 | ljiyeon | using System.Net; |
17 | using System.Reflection; |
||
18 | 71bfd53e | ljiyeon | using System.Runtime.InteropServices; |
19 | 787a4489 | KangIngu | using System.Text; |
20 | 264c9309 | ljiyeon | using System.Threading; |
21 | using System.Threading.Tasks; |
||
22 | 787a4489 | KangIngu | using System.Windows; |
23 | using System.Windows.Controls; |
||
24 | using System.Windows.Data; |
||
25 | using System.Windows.Documents; |
||
26 | using System.Windows.Input; |
||
27 | using System.Windows.Media; |
||
28 | using System.Windows.Media.Imaging; |
||
29 | using System.Windows.Navigation; |
||
30 | using System.Windows.Shapes; |
||
31 | 6707a5c7 | ljiyeon | using System.Xml; |
32 | 992a98b4 | KangIngu | using Telerik.Windows.Controls; |
33 | 7e2d29a0 | ljiyeon | using WinInterop = System.Windows.Interop; |
34 | 787a4489 | KangIngu | |
35 | namespace KCOM |
||
36 | { |
||
37 | /// <summary> |
||
38 | /// MainWindow.xaml에 대한 상호 작용 논리 |
||
39 | /// </summary> |
||
40 | 68302e9d | taeseongkim | public partial class MainWindow : KCOM.Controls.CustomizedWindow.CustomWindow |
41 | 787a4489 | KangIngu | { |
42 | 32af2c3b | djkim | bool isSaveCheck = false; |
43 | d33ef543 | taeseongkim | |
44 | 32af2c3b | djkim | ProgressControl progressControl = null; |
45 | string destfilepath = string.Empty; |
||
46 | |||
47 | 787a4489 | KangIngu | public MainWindow() |
48 | { |
||
49 | c362d2a5 | taeseongkim | |
50 | e0cfc73c | ljiyeon | App.splashString(ISplashMessage.MAINWINDOW); |
51 | c362d2a5 | taeseongkim | |
52 | 787a4489 | KangIngu | this.Loaded += MainWindow_Loaded; |
53 | eeb0a39c | taeseongkim | this.Unloaded += MainWindow_Unloaded; |
54 | 8e6884a5 | taeseongkim | //this.PreviewKeyDown += new KeyEventHandler(KeyEventDownAction); |
55 | d97dbc7f | taeseongkim | this.Activated += MainWindow_Activated; |
56 | } |
||
57 | |||
58 | 9d5b4bc2 | taeseongkim | |
59 | 2007ecaa | taeseongkim | |
60 | d97dbc7f | taeseongkim | private void MainWindow_Activated(object sender, EventArgs e) |
61 | { |
||
62 | this.Topmost = true; |
||
63 | 448c5399 | taeseongkim | this.Topmost = false; |
64 | 787a4489 | KangIngu | } |
65 | ca16abb2 | ljiyeon | |
66 | eeb0a39c | taeseongkim | private void MainWindow_Unloaded(object sender, RoutedEventArgs e) |
67 | { |
||
68 | //ViewerDataModel.Instance.ImageViewPath.UriSource = null; |
||
69 | //ViewerDataModel.Instance.ImageViewPath_C.UriSource = null; |
||
70 | } |
||
71 | |||
72 | 787a4489 | KangIngu | public void DialogMessage_Alert(string content, string header) |
73 | { |
||
74 | c362d2a5 | taeseongkim | App.splashScreen.Close(); |
75 | |||
76 | 787a4489 | KangIngu | Telerik.Windows.Controls.DialogParameters parameters = new Telerik.Windows.Controls.DialogParameters() |
77 | { |
||
78 | b9b01f8e | ljiyeon | Owner = Application.Current.MainWindow, |
79 | 0d32593b | ljiyeon | Content = new TextBlock() |
80 | d33ef543 | taeseongkim | { |
81 | 0d32593b | ljiyeon | MinWidth = 400, |
82 | FontSize = 12, |
||
83 | Text = content, |
||
84 | TextWrapping = System.Windows.TextWrapping.Wrap |
||
85 | }, |
||
86 | 787a4489 | KangIngu | Header = header, |
87 | Theme = new Telerik.Windows.Controls.VisualStudio2013Theme(), |
||
88 | ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
||
89 | }; |
||
90 | Telerik.Windows.Controls.RadWindow.Alert(parameters); |
||
91 | } |
||
92 | 7e2d29a0 | ljiyeon | |
93 | 787a4489 | KangIngu | private void MainWindow_Loaded(object sender, RoutedEventArgs e) |
94 | { |
||
95 | 0c997b99 | ljiyeon | InitializeComponent(); |
96 | d33ef543 | taeseongkim | |
97 | ca16abb2 | ljiyeon | //cursor change |
98 | 902faaea | taeseongkim | this.Cursor = new Cursor(App.DefaultArrowCursorStream); |
99 | ca16abb2 | ljiyeon | |
100 | d33ef543 | taeseongkim | var point = GetScreenCenter(); |
101 | |||
102 | c362d2a5 | taeseongkim | //this.Left = point.X; |
103 | //this.Top = point.Y; |
||
104 | 787a4489 | KangIngu | |
105 | ViewerDataModel.Instance.SystemMain = this; |
||
106 | |||
107 | if (!App.ParameterMode) |
||
108 | { |
||
109 | //App.ViewInfo = new IKCOM.ViewInfo |
||
110 | //{ |
||
111 | // DocumentItemID = "11111112", |
||
112 | // //DocumentItemID = "10001", |
||
113 | // bPartner = false, |
||
114 | // CreateFinalPDFPermission = true, |
||
115 | // NewCommentPermission = true, |
||
116 | // ProjectNO = "000000", |
||
117 | // UserID = "H2011357", |
||
118 | // //UserID = "H2009115", |
||
119 | // //Mode = 0 , 1 , 2 |
||
120 | //}; |
||
121 | //DialogMessage_Alert("데모버전은 단독 실행모드를 지원하지 않습니다", "안내"); |
||
122 | |||
123 | 7e2d29a0 | ljiyeon | //#if DEBUG |
124 | // App.ViewInfo = new IKCOM.ViewInfo |
||
125 | // { |
||
126 | // DocumentItemID = "11111112", |
||
127 | // //DocumentItemID = "10001", |
||
128 | // bPartner = false, |
||
129 | // CreateFinalPDFPermission = true, |
||
130 | // NewCommentPermission = true, |
||
131 | // ProjectNO = "000000", |
||
132 | // UserID = "H2011357", |
||
133 | // //UserID = "H2009115", |
||
134 | // //Mode = 0 , 1 , 2 |
||
135 | // }; |
||
136 | // App.ParameterMode = true; |
||
137 | // this.dzMainMenu.ServiceOn(); |
||
138 | // this.dzMainMenu.SetView(App.ViewInfo); |
||
139 | //#else |
||
140 | 787a4489 | KangIngu | |
141 | DialogMessage_Alert("데모버전은 단독 실행모드를 지원하지 않습니다", "안내"); |
||
142 | this.dzMainMenu.pageNavigator.Visibility = Visibility.Collapsed; |
||
143 | this.dzMainMenu.historyPane.Visibility = Visibility.Collapsed; |
||
144 | this.dzMainMenu.infoListPane.Visibility = Visibility.Collapsed; |
||
145 | this.dzMainMenu.searchPane.Visibility = Visibility.Collapsed; |
||
146 | this.dzMainMenu.talkPane.Visibility = Visibility.Collapsed; |
||
147 | 7e2d29a0 | ljiyeon | //#endif |
148 | 787a4489 | KangIngu | } |
149 | else |
||
150 | { |
||
151 | this.dzMainMenu.ServiceOn(); |
||
152 | 992a98b4 | KangIngu | |
153 | if (!App.ViewInfo.CreateFinalPDFPermission && !App.ViewInfo.NewCommentPermission) |
||
154 | { |
||
155 | this.dzTopMenu.radRibbonView.HelpButtonVisibility = Visibility.Collapsed; |
||
156 | var list = this.dzTopMenu.ChildrenOfType<RadRibbonTab>().ToList(); |
||
157 | list.ForEach(item => item.Visibility = Visibility.Collapsed); |
||
158 | this.dzTopMenu.ribbontab_ReadOnly.Visibility = Visibility.Visible; |
||
159 | this.dzTopMenu.radRibbonView.SelectedItem = this.dzTopMenu.ribbontab_ReadOnly; |
||
160 | e0204db0 | djkim | //this.dzMainMenu.SymbolPane.Visibility = Visibility.Collapsed; |
161 | //this.dzMainMenu.FavoritePane.Visibility = Visibility.Collapsed; |
||
162 | //this.dzMainMenu.drawingRotateCanvas.IsHitTestVisible = false; |
||
163 | 992a98b4 | KangIngu | } |
164 | 3d31db34 | 송근호 | |
165 | try |
||
166 | { |
||
167 | ff01c725 | humkyung | ///this.dzMainMenu.HubSet(); |
168 | 3d31db34 | 송근호 | this.dzMainMenu.SetView(App.ViewInfo); |
169 | } |
||
170 | 5a6493ad | humkyung | catch (Exception ex) |
171 | 3d31db34 | 송근호 | { |
172 | 5a6493ad | humkyung | MessageBox.Show(string.Format("웹 서비스 접속시 에러가 발생했습니다.\n{0}", ex.StackTrace)); |
173 | 3724d2a2 | 송근호 | |
174 | System.Environment.Exit(0); |
||
175 | 3d31db34 | 송근호 | } |
176 | 787a4489 | KangIngu | } |
177 | 6707a5c7 | ljiyeon | |
178 | 787a4489 | KangIngu | //App.ViewInfo = new IKCOM.ViewInfo |
179 | //{ |
||
180 | // DocumentItemID = "11111112", |
||
181 | // //DocumentItemID = "10001", |
||
182 | // bPartner = false, |
||
183 | // CreateFinalPDFPermission = true, |
||
184 | // NewCommentPermission = true, |
||
185 | // ProjectNO = "000000", |
||
186 | // UserID = "H2011357", |
||
187 | // //UserID = "H2009115", |
||
188 | // //Mode = 0 , 1 , 2 |
||
189 | 40a810fc | taeseongkim | //};0 |
190 | 787a4489 | KangIngu | |
191 | //this.dzMainMenu.ServiceOn(); |
||
192 | //this.dzMainMenu.SetView(App.ViewInfo); |
||
193 | } |
||
194 | 6707a5c7 | ljiyeon | |
195 | d33ef543 | taeseongkim | private Point GetScreenCenter() |
196 | 787a4489 | KangIngu | { |
197 | d33ef543 | taeseongkim | Point result = new Point(); |
198 | 3933072f | ljiyeon | |
199 | d33ef543 | taeseongkim | //first get all the screens |
200 | System.Drawing.Rectangle ret; |
||
201 | int ScreenWidth = 0; |
||
202 | 787a4489 | KangIngu | |
203 | d33ef543 | taeseongkim | var mousePosition = System.Windows.Forms.Cursor.Position; |
204 | 71bfd53e | ljiyeon | |
205 | d33ef543 | taeseongkim | for (int i = 1; i <= System.Windows.Forms.Screen.AllScreens.Count(); i++) |
206 | 71bfd53e | ljiyeon | { |
207 | d33ef543 | taeseongkim | ret = System.Windows.Forms.Screen.AllScreens[i - 1].Bounds; |
208 | 3933072f | ljiyeon | |
209 | d33ef543 | taeseongkim | if (ret.Contains(mousePosition)) |
210 | { |
||
211 | result.X = ScreenWidth + (ret.Width / 2 - this.Width / 2); |
||
212 | result.Y = (ret.Height / 2 - this.Height / 2); |
||
213 | 71bfd53e | ljiyeon | |
214 | d33ef543 | taeseongkim | break; |
215 | } |
||
216 | else |
||
217 | { |
||
218 | ScreenWidth += ret.Width; |
||
219 | 71bfd53e | ljiyeon | } |
220 | |||
221 | d33ef543 | taeseongkim | } |
222 | 71bfd53e | ljiyeon | |
223 | |||
224 | d33ef543 | taeseongkim | return result; |
225 | 71bfd53e | ljiyeon | } |
226 | |||
227 | d33ef543 | taeseongkim | protected override void OnStateChanged(EventArgs e) |
228 | 71bfd53e | ljiyeon | { |
229 | d33ef543 | taeseongkim | base.OnStateChanged(e); |
230 | 71bfd53e | ljiyeon | } |
231 | |||
232 | d33ef543 | taeseongkim | protected override void OnClosing(CancelEventArgs e) |
233 | 787a4489 | KangIngu | { |
234 | d33ef543 | taeseongkim | base.OnClosing(e); |
235 | 787a4489 | KangIngu | |
236 | 75f6ff19 | taeseongkim | if(!SaveCheck()) |
237 | { |
||
238 | c362d2a5 | taeseongkim | var IsConfirm = SaveConfirm(); |
239 | |||
240 | if (IsConfirm == null) |
||
241 | 75f6ff19 | taeseongkim | { |
242 | e.Cancel = true; |
||
243 | } |
||
244 | c362d2a5 | taeseongkim | else if(IsConfirm == true) |
245 | { |
||
246 | dzTopMenu.SaveEventCallback(null, null); |
||
247 | } |
||
248 | 75f6ff19 | taeseongkim | } |
249 | 787a4489 | KangIngu | |
250 | d33ef543 | taeseongkim | //Update Check 를 통해 update url 을 Get 하고 결과값이 있을 경우에는 SmartUpdater 실행. |
251 | 9d5b4bc2 | taeseongkim | //KeyValuePair<bool, string> updatecheck = UpdateCheck(); |
252 | //if (updatecheck.Key && !string.IsNullOrEmpty(updatecheck.Value)) |
||
253 | //{ |
||
254 | // CallUpdateProcess(updatecheck.Value); |
||
255 | //} |
||
256 | 787a4489 | KangIngu | } |
257 | d33ef543 | taeseongkim | |
258 | 75f6ff19 | taeseongkim | private bool SaveCheck() |
259 | 264c9309 | ljiyeon | { |
260 | 75f6ff19 | taeseongkim | bool result = false; |
261 | |||
262 | 32af2c3b | djkim | if (ViewerDataModel.Instance.UndoDataList.Count > 0) |
263 | { |
||
264 | DateTime undoTime = ViewerDataModel.Instance.UndoDataList.OrderByDescending(order => order.EventTime).FirstOrDefault().EventTime; |
||
265 | DateTime updatetime = DateTime.Now.AddDays(-1); |
||
266 | if (ViewerDataModel.Instance._markupInfoList.Count > 0) |
||
267 | { |
||
268 | updatetime = ViewerDataModel.Instance._markupInfoList.OrderByDescending(order => order.UpdateTime).FirstOrDefault().UpdateTime; |
||
269 | } |
||
270 | 264c9309 | ljiyeon | |
271 | 32af2c3b | djkim | if (undoTime > updatetime) |
272 | { |
||
273 | 75f6ff19 | taeseongkim | result = false; |
274 | 32af2c3b | djkim | } |
275 | else |
||
276 | { |
||
277 | 75f6ff19 | taeseongkim | result = true; |
278 | d33ef543 | taeseongkim | } |
279 | } |
||
280 | else |
||
281 | 264c9309 | ljiyeon | { |
282 | 75f6ff19 | taeseongkim | result = true; |
283 | 264c9309 | ljiyeon | } |
284 | 75f6ff19 | taeseongkim | |
285 | return result; |
||
286 | 264c9309 | ljiyeon | } |
287 | 75f6ff19 | taeseongkim | |
288 | c362d2a5 | taeseongkim | private bool? SaveConfirm() |
289 | 32af2c3b | djkim | { |
290 | c362d2a5 | taeseongkim | bool? result = null; |
291 | 75f6ff19 | taeseongkim | |
292 | EventHandler<WindowClosedEventArgs> Closedhandler = null; |
||
293 | |||
294 | Closedhandler = (snd, evt) => |
||
295 | 32af2c3b | djkim | { |
296 | c362d2a5 | taeseongkim | result = evt.DialogResult; |
297 | 75f6ff19 | taeseongkim | }; |
298 | |||
299 | DialogParameters parameters = new DialogParameters() |
||
300 | { |
||
301 | Content = new TextBlock() |
||
302 | { |
||
303 | c362d2a5 | taeseongkim | MinWidth = 300, |
304 | 75f6ff19 | taeseongkim | FontSize = 11, |
305 | Text = "Found unsaved comments. Save now?", |
||
306 | TextWrapping = System.Windows.TextWrapping.Wrap |
||
307 | }, |
||
308 | c362d2a5 | taeseongkim | |
309 | 75f6ff19 | taeseongkim | Header = "Confirm", |
310 | Theme = new VisualStudio2013Theme(), |
||
311 | c362d2a5 | taeseongkim | ContentStyle = Application.Current.Resources["RadConfirmYNCStyle"] as Style, |
312 | 75f6ff19 | taeseongkim | ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
313 | c362d2a5 | taeseongkim | |
314 | Owner = Application.Current.MainWindow, |
||
315 | Opened = (s, openedEvent) => |
||
316 | { |
||
317 | RadWindow confirm = s as RadWindow; |
||
318 | //Button Cancel = confirm.ChildrenOfType<Button>()[5]; |
||
319 | //FocusManager.SetIsFocusScope(confirm, true); |
||
320 | //FocusManager.SetFocusedElement(confirm, Cancel); |
||
321 | }, |
||
322 | |||
323 | 75f6ff19 | taeseongkim | Closed = Closedhandler |
324 | }; |
||
325 | |||
326 | RadWindow.Confirm(parameters); |
||
327 | |||
328 | return result; |
||
329 | 32af2c3b | djkim | } |
330 | d33ef543 | taeseongkim | |
331 | c362d2a5 | taeseongkim | |
332 | 32af2c3b | djkim | private void client_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e) |
333 | { |
||
334 | Dispatcher.BeginInvoke(System.Windows.Threading.DispatcherPriority.Normal, new Action(delegate |
||
335 | { |
||
336 | double bytesIn = double.Parse(e.BytesReceived.ToString()); |
||
337 | double totalBytes = double.Parse(e.TotalBytesToReceive.ToString()); |
||
338 | double percentage = bytesIn / totalBytes * 100; |
||
339 | progressControl.splashText.Text = "Download : " + Math.Truncate(percentage).ToString() + " %"; |
||
340 | d33ef543 | taeseongkim | progressControl.progressBar.Value = int.Parse(Math.Truncate(percentage).ToString()); |
341 | 32af2c3b | djkim | })); |
342 | 310eff8b | djkim | } |
343 | |||
344 | /// <summary> |
||
345 | /// KCOM_API 를 통해 업데이트 URL 을 가져옴. |
||
346 | /// false : 업데이트 불필요. |
||
347 | /// true : 업데이트 필요. url 을 같이 Return. |
||
348 | /// </summary> |
||
349 | /// <returns></returns> |
||
350 | private KeyValuePair<bool, string> UpdateCheck() |
||
351 | 264c9309 | ljiyeon | { |
352 | 310eff8b | djkim | bool isUpdateCheck = false; |
353 | string updateurl = string.Empty; |
||
354 | 264c9309 | ljiyeon | try |
355 | { |
||
356 | ffddbe4e | djkim | bool is64bit = Environment.Is64BitProcess; |
357 | string clientversion = Assembly.GetExecutingAssembly().GetName().Version.ToString(); |
||
358 | updateurl = Common.ViewerDataModel.Instance.SystemMain.dzMainMenu.BaseClient.GetVersionData(is64bit, clientversion); |
||
359 | d33ef543 | taeseongkim | |
360 | ffddbe4e | djkim | if (Check_Uri.isUri(updateurl)) |
361 | d33ef543 | taeseongkim | { |
362 | 32af2c3b | djkim | DialogParameters parameters = new DialogParameters() |
363 | 264c9309 | ljiyeon | { |
364 | 32af2c3b | djkim | Owner = Application.Current.MainWindow, |
365 | 97cde7e3 | ljiyeon | Content = new TextBlock() |
366 | { |
||
367 | MinWidth = 400, |
||
368 | FontSize = 11, |
||
369 | eeb0a39c | taeseongkim | Text = "Update is available. \n Update now?", |
370 | 97cde7e3 | ljiyeon | TextWrapping = System.Windows.TextWrapping.Wrap |
371 | }, |
||
372 | 32af2c3b | djkim | Header = "Confirm", |
373 | Theme = new VisualStudio2013Theme(), |
||
374 | d33ef543 | taeseongkim | ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
375 | 32af2c3b | djkim | Closed = delegate (object windowSender, WindowClosedEventArgs e) |
376 | 264c9309 | ljiyeon | { |
377 | 32af2c3b | djkim | if (e.DialogResult == true) |
378 | d33ef543 | taeseongkim | { |
379 | isUpdateCheck = true; |
||
380 | 97cde7e3 | ljiyeon | } |
381 | else |
||
382 | 32af2c3b | djkim | { |
383 | 310eff8b | djkim | isUpdateCheck = false; |
384 | d33ef543 | taeseongkim | } |
385 | } |
||
386 | 32af2c3b | djkim | }; |
387 | d33ef543 | taeseongkim | RadWindow.Confirm(parameters); |
388 | |||
389 | 264c9309 | ljiyeon | } |
390 | else |
||
391 | { |
||
392 | 310eff8b | djkim | isUpdateCheck = false; |
393 | 264c9309 | ljiyeon | } |
394 | } |
||
395 | 5a6493ad | humkyung | catch (Exception ex) |
396 | 264c9309 | ljiyeon | { |
397 | 5a6493ad | humkyung | throw ex; |
398 | 310eff8b | djkim | } |
399 | return new KeyValuePair<bool, string>(isUpdateCheck, updateurl); |
||
400 | 264c9309 | ljiyeon | } |
401 | |||
402 | 310eff8b | djkim | /// <summary> |
403 | /// SmartUpdate 를 호출. |
||
404 | /// </summary> |
||
405 | /// <param name="updateurl">Download 할 설치파일 경로</param> |
||
406 | private void CallUpdateProcess(string updateurl) |
||
407 | { |
||
408 | ProcessStartInfo proInfo = new ProcessStartInfo(); |
||
409 | string smartupdaterpath = string.Empty; |
||
410 | smartupdaterpath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "SmartUpdate.exe"); |
||
411 | Process.Start(smartupdaterpath, updateurl); |
||
412 | } |
||
413 | d04e8ee9 | taeseongkim | private async void Client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) |
414 | 32af2c3b | djkim | { |
415 | 264c9309 | ljiyeon | try |
416 | { |
||
417 | d33ef543 | taeseongkim | await Dispatcher.InvokeAsync(() => progressControl.splashText.Text = "Download Completed"); |
418 | d04e8ee9 | taeseongkim | |
419 | d33ef543 | taeseongkim | if (progressControl != null) |
420 | 32af2c3b | djkim | { |
421 | progressControl.Close(); |
||
422 | progressControl = null; |
||
423 | } |
||
424 | d33ef543 | taeseongkim | if (File.Exists(destfilepath)) |
425 | 32af2c3b | djkim | { |
426 | ProcessStartInfo update_msi = new ProcessStartInfo(); |
||
427 | update_msi.FileName = destfilepath; |
||
428 | Process.Start(update_msi); |
||
429 | d33ef543 | taeseongkim | } |
430 | 32af2c3b | djkim | this.Close(); |
431 | 264c9309 | ljiyeon | } |
432 | 32af2c3b | djkim | catch (Exception) |
433 | 69ef0800 | KangIngu | { |
434 | 32af2c3b | djkim | throw; |
435 | 69ef0800 | KangIngu | } |
436 | 7e2d29a0 | ljiyeon | |
437 | } |
||
438 | 787a4489 | KangIngu | } |
439 | } |