개정판 b2d0f316
Feature: 선택한 객체를 앞으로(+)/뒤로(-) 보내기 기능 추가
Change-Id: I9130a93cfdb2d079f28258f3d669a6f532695f89
MarkupToPDF/Common/CommentUserInfo.cs | ||
---|---|---|
3 | 3 |
using MarkupToPDF.Controls.Parsing; |
4 | 4 |
using System; |
5 | 5 |
using System.Collections.Generic; |
6 |
using System.ComponentModel; |
|
6 | 7 |
using System.Linq; |
7 | 8 |
using System.Text; |
8 | 9 |
using System.Windows; |
... | ... | |
33 | 34 |
public string SymbolID { get; set; } |
34 | 35 |
public long GroupID { get; set; } |
35 | 36 |
|
37 |
[Description("ZIndex 값이 높을 수록 앞쪽으로 배치된다.")] |
|
38 |
public int ZIndex { get; set; } = 0; |
|
39 |
|
|
36 | 40 |
private SolidColorBrush _TempBorderBrush { get; set; } |
37 |
private SolidColorBrush _HoverBorderBrush = new SolidColorBrush(Color.FromRgb(255, 0, 255)); |
|
41 |
private SolidColorBrush _HoverBorderBrush { get; } = new SolidColorBrush(Color.FromRgb(255, 0, 255));
|
|
38 | 42 |
|
39 | 43 |
public CommentUserInfo() |
40 | 44 |
{ |
내보내기 Unified diff