Exemplo n.º 1
0
 public static void CopyStyle(Style style)
 {
     var styleCard = new StyleCard();
     styleCard.GetData(style);
     styleCard._style = null;
     styleCard.ShowDialog();
 }
Exemplo n.º 2
0
        public static Style CreateStyle(StyleType styleType)
        {
            var styleCard = new StyleCard();
            styleCard._styleType = styleType;
            styleCard.ShowDialog();

            return styleCard._style;
        }
Exemplo n.º 3
0
 public static void UpdateStyle(Style style)
 {
     var styleCard = new StyleCard();
     styleCard.GetData(style);
     styleCard.ShowDialog();
 }