개정판 b7813553
issue #1133: MainMenu 수정
Change-Id: Ifd70cd00de4f5fea8d13afead9206262570eb72d
KCOM/Views/MainMenu.xaml.cs | ||
---|---|---|
2136 | 2136 |
} |
2137 | 2137 |
/// up to here |
2138 | 2138 |
|
2139 |
foreach (var arrow_text in ViewerDataModel.Instance.MarkupControls_USER)
|
|
2139 |
foreach (var item in ViewerDataModel.Instance.MarkupControls_USER)
|
|
2140 | 2140 |
{ |
2141 |
if (arrow_text as ArrowTextControl != null)
|
|
2141 |
if (item as ArrowTextControl != null)
|
|
2142 | 2142 |
{ |
2143 |
(arrow_text as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
|
|
2143 |
(item as ArrowTextControl).Base_TextBox.IsHitTestVisible = false;
|
|
2144 | 2144 |
} |
2145 | 2145 |
} |
2146 | 2146 |
|
... | ... | |
2151 | 2151 |
{ |
2152 | 2152 |
(text_item_ as TextControl).Base_TextBlock.Visibility = Visibility.Visible; |
2153 | 2153 |
(text_item_ as TextControl).Base_TextBox.Visibility = Visibility.Collapsed; |
2154 |
(text_item_ as TextControl).EnableEditing = false; |
|
2154 |
(text_item_ as TextControl).IsEditingMode = false; |
|
2155 |
(text_item_ as TextControl).Base_TextBox.Focusable = false; |
|
2155 | 2156 |
currentControl = null; |
2156 | 2157 |
} |
2157 | 2158 |
|
내보내기 Unified diff