개정판 f65e6c02
debug_SNI 추가
Change-Id: I46d431ca15362882a9ab7e8dd7600371f47471de
KCOM/Messenger/ConversationView.xaml.cs | ||
---|---|---|
48 | 48 |
{ |
49 | 49 |
Owner = Application.Current.MainWindow, |
50 | 50 |
Closed = (obj, args) => this.MarkupNameUpdatePromptClose(args), |
51 |
Content = "메모 :",
|
|
52 |
Header = "앵커에 대한 메모을 남겨주세요",
|
|
51 |
Content = "Memo :",
|
|
52 |
Header = "Make a note About the Anchor",
|
|
53 | 53 |
Theme = new VisualStudio2013Theme(), |
54 | 54 |
ModalBackground = new SolidColorBrush { Color = Colors.Black, Opacity = 0.6 }, |
55 | 55 |
}; |
... | ... | |
59 | 59 |
} |
60 | 60 |
else |
61 | 61 |
{ |
62 |
MessageBox.Show("먼저 코멘트를 선택해주세요", "안내");
|
|
62 |
MessageBox.Show("Please Select a comment first", "Info");
|
|
63 | 63 |
} |
64 | 64 |
} |
65 | 65 |
|
... | ... | |
81 | 81 |
|
82 | 82 |
private void MarkupNameUpdatePromptClose(WindowClosedEventArgs args) |
83 | 83 |
{ |
84 |
if (args.DialogResult.Value)
|
|
84 |
if (args.DialogResult.GetValueOrDefault())
|
|
85 | 85 |
{ |
86 | 86 |
if (String.IsNullOrWhiteSpace(args.PromptResult) || args.PromptResult == null) |
87 | 87 |
{ |
내보내기 Unified diff