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(); }
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; }
public LrcSetFrm(LrcPanel lrcPanel) { InitializeComponent(); this.lrcPanel = lrcPanel; }
public DeskLrcFrm(LrcPanel lrc) { InitializeComponent(); this.lrcPanel = lrc; this.DoubleBuffered = true; }