|
@@ -872,8 +872,10 @@ namespace ComPDFKit.Tool
|
|
textBorder.BorderBrush = new SolidColorBrush(borderColor);
|
|
textBorder.BorderBrush = new SolidColorBrush(borderColor);
|
|
textBorder.BorderThickness = new Thickness(DpiHelper.PDFNumToStandardNum(textWidget.GetBorderWidth() * annotData.CurrentZoom));
|
|
textBorder.BorderThickness = new Thickness(DpiHelper.PDFNumToStandardNum(textWidget.GetBorderWidth() * annotData.CurrentZoom));
|
|
textui.BorderThickness = new Thickness(0);
|
|
textui.BorderThickness = new Thickness(0);
|
|
- textui.Text = textWidget.Content;
|
|
|
|
-
|
|
|
|
|
|
+ if (string.IsNullOrEmpty(textui.Text) == false)
|
|
|
|
+ {
|
|
|
|
+ textui.CaretIndex = textui.Text.Length;
|
|
|
|
+ }
|
|
textui.FontFamily = new FontFamily(GetFontName(textAttribute.FontName));
|
|
textui.FontFamily = new FontFamily(GetFontName(textAttribute.FontName));
|
|
textui.FontWeight = IsBold(textAttribute.FontName) ? FontWeights.Bold : FontWeights.Normal;
|
|
textui.FontWeight = IsBold(textAttribute.FontName) ? FontWeights.Bold : FontWeights.Normal;
|
|
textui.FontStyle = IsItalic(textAttribute.FontName) ? FontStyles.Italic : FontStyles.Normal;
|
|
textui.FontStyle = IsItalic(textAttribute.FontName) ? FontStyles.Italic : FontStyles.Normal;
|