示例#1
0
 /// <summary>
 /// Returns the copy of the style.
 /// </summary>
 /// <returns>Copy of the style.</returns>
 public void CopyTo(BaseVisualStyle copy)
 {
     copy.Class = _Class;
     copy.Tag = _Tag;
 }
示例#2
0
 /// <summary>
 /// Applies the style to instance of this style.
 /// </summary>
 /// <param name="style">Style to apply.</param>
 public void ApplyStyle(BaseVisualStyle style)
 {
 }
示例#3
0
        /// <summary>
        /// Returns the copy of the style.
        /// </summary>
        /// <returns>Copy of the style.</returns>
        public BaseVisualStyle Copy()
        {
            BaseVisualStyle style = new BaseVisualStyle();

            CopyTo(style);

            return (style);
        }