示例#1
0
        public void ApplyChangesToComponent(Assemblies.Components.ComposerComponent component)
        {
            Markee comp = component as Markee;

            try
            {
                comp.TextList   = markee.TextList;
                comp.Speed      = markee.Speed;
                comp.BackColor  = markee.BackColor;
                comp.TextColor  = markee.TextColor;
                comp.MarkeeFont = markee.MarkeeFont;
                comp.Direction  = markee.Direction;
            }
            catch (Exception ex)
            {
#if DEBUG
                MessageBox.Show("ApplyChangesToComponent" + Environment.NewLine + ex.Message);
#endif
            }
        }