개정판 0d32593b
issue #000: DialogParameters Content 수정
Change-Id: Iea69711861af9d77f36761b25aa75b9bee89a51b
KCOM/MainWindow.xaml.cs | ||
---|---|---|
63 | 63 |
|
64 | 64 |
public void DialogMessage_Alert(string content, string header) |
65 | 65 |
{ |
66 |
var box = new TextBlock(); |
|
67 |
box.MinWidth = 400; |
|
68 |
box.FontSize = 12; |
|
69 |
box.Text = content; |
|
70 |
box.TextWrapping = System.Windows.TextWrapping.Wrap; |
|
71 |
|
|
72 | 66 |
Telerik.Windows.Controls.DialogParameters parameters = new Telerik.Windows.Controls.DialogParameters() |
73 | 67 |
{ |
74 | 68 |
Owner = Application.Current.MainWindow, |
75 |
Content = box, |
|
69 |
Content = new TextBlock() |
|
70 |
{ |
|
71 |
MinWidth = 400, |
|
72 |
FontSize = 12, |
|
73 |
Text = content, |
|
74 |
TextWrapping = System.Windows.TextWrapping.Wrap |
|
75 |
}, |
|
76 | 76 |
Header = header, |
77 | 77 |
Theme = new Telerik.Windows.Controls.VisualStudio2013Theme(), |
78 | 78 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
... | ... | |
349 | 349 |
|
350 | 350 |
if (undoTime > updatetime) |
351 | 351 |
{ |
352 |
var box = new TextBlock(); |
|
353 |
box.MinWidth = 400; |
|
354 |
box.FontSize = 11; |
|
355 |
box.Text = "저장되지 않은 코멘트가 있습니다. 저장 하시겠습니까?"; |
|
356 |
box.TextWrapping = System.Windows.TextWrapping.Wrap; |
|
357 |
|
|
358 | 352 |
DialogParameters parameters = new DialogParameters() |
359 | 353 |
{ |
360 | 354 |
Owner = Application.Current.MainWindow, |
361 |
Content = box, |
|
355 |
Content = new TextBlock() |
|
356 |
{ |
|
357 |
MinWidth = 400, |
|
358 |
FontSize = 11, |
|
359 |
Text = "저장되지 않은 코멘트가 있습니다. 저장 하시겠습니까?", |
|
360 |
TextWrapping = System.Windows.TextWrapping.Wrap |
|
361 |
}, |
|
362 | 362 |
Header = "Confirm", |
363 | 363 |
Theme = new VisualStudio2013Theme(), |
364 | 364 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
내보내기 Unified diff