Exemplo n.º 1
0
        private void DeskLrcFrm_Load(object sender, EventArgs e)
        {
            this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width / 4, Screen.PrimaryScreen.WorkingArea.Height - 100);
            this.deskLrcControl1.lrcPanel = this.lrcPanel;

            Thread t = new Thread(loadLrc);
            t.IsBackground = true;
            t.Start();
        }
Exemplo n.º 2
0
        private void DeskLrcFrm_Load(object sender, EventArgs e)
        {
            this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width / 4, Screen.PrimaryScreen.WorkingArea.Height - 100);
            this.deskLrcControl1.lrcPanel = this.lrcPanel;

            Thread t = new Thread(loadLrc);

            t.IsBackground = true;
            t.Start();
        }
Exemplo n.º 3
0
        public LrcSetFrm(LrcPanel lrcPanel)
        {
            InitializeComponent();
            this.lrcPanel = lrcPanel;

            tudou = AssemblyTitle;
            this.Text = String.Format("关于 {0}", AssemblyProduct);
            this.labelProductName.Text = AssemblyProduct;
            this.labelVersion.Text = String.Format("版本 {0}", AssemblyVersion);
            this.labelCopyright.Text = AssemblyCopyright;
            this.labelCompanyName.Text = AssemblyCompany;
            this.textBoxDescription.Text = AssemblyDescription;
        }
Exemplo n.º 4
0
        public LrcSetFrm(LrcPanel lrcPanel)
        {
            InitializeComponent();
            this.lrcPanel = lrcPanel;

            tudou     = AssemblyTitle;
            this.Text = String.Format("关于 {0}", AssemblyProduct);
            this.labelProductName.Text   = AssemblyProduct;
            this.labelVersion.Text       = String.Format("版本 {0}", AssemblyVersion);
            this.labelCopyright.Text     = AssemblyCopyright;
            this.labelCompanyName.Text   = AssemblyCompany;
            this.textBoxDescription.Text = AssemblyDescription;
        }
Exemplo n.º 5
0
 public LrcSetFrm(LrcPanel lrcPanel)
 {
     InitializeComponent();
     this.lrcPanel = lrcPanel;
 }
Exemplo n.º 6
0
 public DeskLrcFrm(LrcPanel lrc)
 {
     InitializeComponent();
     this.lrcPanel       = lrc;
     this.DoubleBuffered = true;
 }
Exemplo n.º 7
0
 public DeskLrcFrm(LrcPanel lrc)
 {
     InitializeComponent();
     this.lrcPanel = lrc;
     this.DoubleBuffered = true;
 }
Exemplo n.º 8
0
 public LrcSetFrm(LrcPanel lrcPanel)
 {
     InitializeComponent();
     this.lrcPanel = lrcPanel;
 }