|
@@ -107,6 +107,8 @@ namespace PDF_Master.ViewModels.PropertyPanel.AnnotPanel
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
public List<ComboDataItem> ThicknessItems { get; protected set; }
|
|
|
|
|
|
private AnnotCommon _basicVm = new AnnotCommon();
|
|
@@ -605,6 +607,7 @@ namespace PDF_Master.ViewModels.PropertyPanel.AnnotPanel
|
|
|
|
|
|
case AnnotArgsType.AnnotLine:
|
|
|
argsLine = temp as LineAnnotArgs;
|
|
|
+ IsLineAnnot = true;
|
|
|
LineColor = argsLine.LineColor;
|
|
|
LineWidth = argsLine.LineWidth;
|
|
|
LineDash = argsLine.LineDash;
|
|
@@ -636,7 +639,8 @@ namespace PDF_Master.ViewModels.PropertyPanel.AnnotPanel
|
|
|
}
|
|
|
if (item is LineAnnotArgs)
|
|
|
{
|
|
|
- argsLine = item as LineAnnotArgs;
|
|
|
+ argsLine = item as LineAnnotArgs;
|
|
|
+ IsLineAnnot = true;
|
|
|
LineColoritem = argsLine.LineColor;
|
|
|
LineWidthitem = argsLine.LineWidth;
|
|
|
LineDashitem = argsLine.LineDash;
|
|
@@ -661,6 +665,7 @@ namespace PDF_Master.ViewModels.PropertyPanel.AnnotPanel
|
|
|
if (annotLinetemp.TailLineType != annotLineitem.TailLineType)
|
|
|
{
|
|
|
BasicVm.AnnotTypeTitle = "其他";
|
|
|
+
|
|
|
isNoEqualsDir["AnnotTypeTitle"] = true;
|
|
|
}
|
|
|
|