예제 #1
0
파일: frmError.cs 프로젝트: avogelba/PWR
 private void frmError_Load(object sender, EventArgs e)
 {
     LoadFrame();
     _cRcm.Start();
     pnlFill.Top       = -2;
     pnlFill.Left      = -1;
     pnlFill.Width     = this.Width;
     pnlFill.Height    = this.Height;
     lblTitle.Parent   = pnlFill;
     lblMessage.Parent = pnlFill;
 }
예제 #2
0
파일: frmDevices.cs 프로젝트: avogelba/PWR
 private void frmOptions_Load(object sender, EventArgs e)
 {
     LoadFrame();
     _cRcm.Start();
     pnlFill.Top       = -2;
     pnlFill.Left      = -1;
     pnlFill.Width     = this.Width;
     pnlFill.Height    = this.Height;
     lblInput.Parent   = pnlFill;
     lblOutput.Parent  = pnlFill;
     this.InputDevice  = Properties.Settings.Default.SettingAudioInputDevice;
     this.OutputDevice = Properties.Settings.Default.SettingAudioOutputDevice;
     GetOutputDevices();
     GetInputDevices();
 }