개정판 1b2cf911
ArrowTextControl 수정
Change-Id: I6bce182ed18f0c65dc7587d0d84bccac557fdf0b
MarkupToPDF/Controls/Text/ArrowTextControl.cs | ||
---|---|---|
31 | 31 |
public TextBox Base_TextBox = null; |
32 | 32 |
public TextBlock Base_TextBlock = null; |
33 | 33 |
public Border BaseTextbox_Caret = null; |
34 |
public event EventHandler<EventArgs> EditEnded; |
|
35 |
|
|
34 | 36 |
|
35 | 37 |
private const double _CloudArcDepth = 0.8; /// 2018.05.14 added by humkyung |
36 | 38 |
|
... | ... | |
224 | 226 |
this.BaseTextbox_Caret.Visibility = Visibility.Collapsed; |
225 | 227 |
this.IsEditingMode = false; |
226 | 228 |
ApplyOverViewData(); |
229 |
|
|
230 |
if(EditEnded != null) |
|
231 |
{ |
|
232 |
EditEnded(this, new EventArgs()); |
|
233 |
} |
|
234 |
|
|
227 | 235 |
} |
228 | 236 |
|
229 | 237 |
void Base_TextBox_GotFocus(object sender, RoutedEventArgs e) |
... | ... | |
1526 | 1534 |
{ |
1527 | 1535 |
this.OverViewPathData = this.PathData; |
1528 | 1536 |
if (ArrowText == "") |
1537 |
{ |
|
1538 |
this.OverViewArrowText = ""; |
|
1529 | 1539 |
this.ArrowText = this.OverViewArrowText; |
1540 |
} |
|
1530 | 1541 |
else |
1531 | 1542 |
this.OverViewArrowText = this.ArrowText; |
1532 | 1543 |
this.OverViewStartPoint = this.StartPoint; |
내보내기 Unified diff