mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
Fixed Frequency Changer - wouldnt change value
This commit is contained in:
parent
484c42b271
commit
f6b32fb46f
|
|
@ -138,9 +138,6 @@
|
||||||
<EmbeddedResource Include="SDRSharp.PanView\GradientDialog.resx">
|
<EmbeddedResource Include="SDRSharp.PanView\GradientDialog.resx">
|
||||||
<DependentUpon>GradientDialog.cs</DependentUpon>
|
<DependentUpon>GradientDialog.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="SDRSharp.PanView\Indicator.resx">
|
|
||||||
<DependentUpon>Indicator.cs</DependentUpon>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<EmbeddedResource Include="SDRSharp.Radio\BarMeter.resx">
|
<EmbeddedResource Include="SDRSharp.Radio\BarMeter.resx">
|
||||||
<DependentUpon>BarMeter.cs</DependentUpon>
|
<DependentUpon>BarMeter.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|
|
||||||
|
|
@ -338,200 +338,228 @@ namespace SDRSharp.PanView
|
||||||
|
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
this.txt8 = new System.Windows.Forms.Label();
|
this.txt8 = new Label();
|
||||||
this.txt7 = new System.Windows.Forms.Label();
|
this.txt7 = new Label();
|
||||||
this.txt6 = new System.Windows.Forms.Label();
|
this.txt6 = new Label();
|
||||||
this.txt3 = new System.Windows.Forms.Label();
|
this.txt3 = new Label();
|
||||||
this.txt4 = new System.Windows.Forms.Label();
|
this.txt4 = new Label();
|
||||||
this.txt5 = new System.Windows.Forms.Label();
|
this.txt5 = new Label();
|
||||||
this.txt0 = new System.Windows.Forms.Label();
|
this.txt0 = new Label();
|
||||||
this.txt1 = new System.Windows.Forms.Label();
|
this.txt1 = new Label();
|
||||||
this.txt2 = new System.Windows.Forms.Label();
|
this.txt2 = new Label();
|
||||||
this.txt10 = new System.Windows.Forms.Label();
|
this.txt10 = new Label();
|
||||||
this.txt9 = new System.Windows.Forms.Label();
|
this.txt9 = new Label();
|
||||||
this.SuspendLayout();
|
base.SuspendLayout();
|
||||||
//
|
this.txt8.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
// txt8
|
this.txt8.BorderStyle = BorderStyle.FixedSingle;
|
||||||
//
|
this.txt8.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
this.txt8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt8.ForeColor = Color.Yellow;
|
||||||
this.txt8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt8.Location = new Point(77, 0);
|
||||||
this.txt8.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt8.Margin = new Padding(0);
|
||||||
this.txt8.ForeColor = System.Drawing.Color.CornflowerBlue;
|
|
||||||
this.txt8.Location = new System.Drawing.Point(77, 0);
|
|
||||||
this.txt8.Margin = new System.Windows.Forms.Padding(0);
|
|
||||||
this.txt8.Name = "txt8";
|
this.txt8.Name = "txt8";
|
||||||
this.txt8.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt8.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt8.Size = new System.Drawing.Size(24, 34);
|
this.txt8.Size = new Size(24, 34);
|
||||||
this.txt8.TabIndex = 0;
|
this.txt8.TabIndex = 0;
|
||||||
this.txt8.Text = "8";
|
this.txt8.Text = "8";
|
||||||
this.txt8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt8.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt8.Enter += this.txt_Enter;
|
||||||
// txt7
|
this.txt8.Leave += this.txt_Leave;
|
||||||
//
|
this.txt8.MouseDown += this.txt_MouseDown;
|
||||||
this.txt7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt8.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt8.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt7.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt8.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt7.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt7.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt7.Location = new System.Drawing.Point(101, 0);
|
this.txt7.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt7.Margin = new System.Windows.Forms.Padding(0);
|
this.txt7.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt7.ForeColor = Color.Yellow;
|
||||||
|
this.txt7.Location = new Point(101, 0);
|
||||||
|
this.txt7.Margin = new Padding(0);
|
||||||
this.txt7.Name = "txt7";
|
this.txt7.Name = "txt7";
|
||||||
this.txt7.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt7.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt7.Size = new System.Drawing.Size(24, 34);
|
this.txt7.Size = new Size(24, 34);
|
||||||
this.txt7.TabIndex = 1;
|
this.txt7.TabIndex = 1;
|
||||||
this.txt7.Text = "8";
|
this.txt7.Text = "8";
|
||||||
this.txt7.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt7.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt7.Enter += this.txt_Enter;
|
||||||
// txt6
|
this.txt7.Leave += this.txt_Leave;
|
||||||
//
|
this.txt7.MouseDown += this.txt_MouseDown;
|
||||||
this.txt6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt7.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt7.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt6.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt7.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt6.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt6.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt6.Location = new System.Drawing.Point(125, 0);
|
this.txt6.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt6.Margin = new System.Windows.Forms.Padding(0);
|
this.txt6.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt6.ForeColor = Color.Yellow;
|
||||||
|
this.txt6.Location = new Point(125, 0);
|
||||||
|
this.txt6.Margin = new Padding(0);
|
||||||
this.txt6.Name = "txt6";
|
this.txt6.Name = "txt6";
|
||||||
this.txt6.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt6.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt6.Size = new System.Drawing.Size(24, 34);
|
this.txt6.Size = new Size(24, 34);
|
||||||
this.txt6.TabIndex = 2;
|
this.txt6.TabIndex = 2;
|
||||||
this.txt6.Text = "8";
|
this.txt6.Text = "8";
|
||||||
this.txt6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt6.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt6.Enter += this.txt_Enter;
|
||||||
// txt3
|
this.txt6.Leave += this.txt_Leave;
|
||||||
//
|
this.txt6.MouseDown += this.txt_MouseDown;
|
||||||
this.txt3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt6.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt6.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt3.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt6.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt3.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt3.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt3.Location = new System.Drawing.Point(202, 0);
|
this.txt3.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt3.Margin = new System.Windows.Forms.Padding(0);
|
this.txt3.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt3.ForeColor = Color.Yellow;
|
||||||
|
this.txt3.Location = new Point(202, 0);
|
||||||
|
this.txt3.Margin = new Padding(0);
|
||||||
this.txt3.Name = "txt3";
|
this.txt3.Name = "txt3";
|
||||||
this.txt3.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt3.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt3.Size = new System.Drawing.Size(24, 34);
|
this.txt3.Size = new Size(24, 34);
|
||||||
this.txt3.TabIndex = 5;
|
this.txt3.TabIndex = 5;
|
||||||
this.txt3.Text = "8";
|
this.txt3.Text = "8";
|
||||||
this.txt3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt3.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt3.Enter += this.txt_Enter;
|
||||||
// txt4
|
this.txt3.Leave += this.txt_Leave;
|
||||||
//
|
this.txt3.MouseDown += this.txt_MouseDown;
|
||||||
this.txt4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt3.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt3.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt4.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt3.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt4.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt4.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt4.Location = new System.Drawing.Point(178, 0);
|
this.txt4.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt4.Margin = new System.Windows.Forms.Padding(0);
|
this.txt4.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt4.ForeColor = Color.Yellow;
|
||||||
|
this.txt4.Location = new Point(178, 0);
|
||||||
|
this.txt4.Margin = new Padding(0);
|
||||||
this.txt4.Name = "txt4";
|
this.txt4.Name = "txt4";
|
||||||
this.txt4.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt4.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt4.Size = new System.Drawing.Size(24, 34);
|
this.txt4.Size = new Size(24, 34);
|
||||||
this.txt4.TabIndex = 4;
|
this.txt4.TabIndex = 4;
|
||||||
this.txt4.Text = "8";
|
this.txt4.Text = "8";
|
||||||
this.txt4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt4.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt4.Enter += this.txt_Enter;
|
||||||
// txt5
|
this.txt4.Leave += this.txt_Leave;
|
||||||
//
|
this.txt4.MouseDown += this.txt_MouseDown;
|
||||||
this.txt5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt4.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt4.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt5.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt4.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt5.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt5.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt5.Location = new System.Drawing.Point(154, 0);
|
this.txt5.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt5.Margin = new System.Windows.Forms.Padding(0);
|
this.txt5.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt5.ForeColor = Color.Yellow;
|
||||||
|
this.txt5.Location = new Point(154, 0);
|
||||||
|
this.txt5.Margin = new Padding(0);
|
||||||
this.txt5.Name = "txt5";
|
this.txt5.Name = "txt5";
|
||||||
this.txt5.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt5.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt5.Size = new System.Drawing.Size(24, 34);
|
this.txt5.Size = new Size(24, 34);
|
||||||
this.txt5.TabIndex = 3;
|
this.txt5.TabIndex = 3;
|
||||||
this.txt5.Text = "8";
|
this.txt5.Text = "8";
|
||||||
this.txt5.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt5.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt5.Enter += this.txt_Enter;
|
||||||
// txt0
|
this.txt5.Leave += this.txt_Leave;
|
||||||
//
|
this.txt5.MouseDown += this.txt_MouseDown;
|
||||||
this.txt0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt5.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt5.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt0.Font = new System.Drawing.Font("LCD", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt5.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt0.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt0.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt0.Location = new System.Drawing.Point(271, 0);
|
this.txt0.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt0.Margin = new System.Windows.Forms.Padding(0);
|
this.txt0.Font = new Font("LCD", 18f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt0.ForeColor = Color.Yellow;
|
||||||
|
this.txt0.Location = new Point(271, 0);
|
||||||
|
this.txt0.Margin = new Padding(0);
|
||||||
this.txt0.Name = "txt0";
|
this.txt0.Name = "txt0";
|
||||||
this.txt0.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt0.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt0.Size = new System.Drawing.Size(22, 30);
|
this.txt0.Size = new Size(22, 30);
|
||||||
this.txt0.TabIndex = 8;
|
this.txt0.TabIndex = 8;
|
||||||
this.txt0.Text = "8";
|
this.txt0.Text = "8";
|
||||||
this.txt0.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt0.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt0.Enter += this.txt_Enter;
|
||||||
// txt1
|
this.txt0.Leave += this.txt_Leave;
|
||||||
//
|
this.txt0.MouseDown += this.txt_MouseDown;
|
||||||
this.txt1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt0.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt0.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt1.Font = new System.Drawing.Font("LCD", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt0.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt1.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt1.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt1.Location = new System.Drawing.Point(251, 0);
|
this.txt1.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt1.Margin = new System.Windows.Forms.Padding(0);
|
this.txt1.Font = new Font("LCD", 18f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt1.ForeColor = Color.Yellow;
|
||||||
|
this.txt1.Location = new Point(251, 0);
|
||||||
|
this.txt1.Margin = new Padding(0);
|
||||||
this.txt1.Name = "txt1";
|
this.txt1.Name = "txt1";
|
||||||
this.txt1.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt1.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt1.Size = new System.Drawing.Size(22, 30);
|
this.txt1.Size = new Size(22, 30);
|
||||||
this.txt1.TabIndex = 7;
|
this.txt1.TabIndex = 7;
|
||||||
this.txt1.Text = "8";
|
this.txt1.Text = "8";
|
||||||
this.txt1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt1.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt1.Enter += this.txt_Enter;
|
||||||
// txt2
|
this.txt1.Leave += this.txt_Leave;
|
||||||
//
|
this.txt1.MouseDown += this.txt_MouseDown;
|
||||||
this.txt2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt1.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt1.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt2.Font = new System.Drawing.Font("LCD", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt1.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt2.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt2.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt2.Location = new System.Drawing.Point(231, 0);
|
this.txt2.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt2.Margin = new System.Windows.Forms.Padding(0);
|
this.txt2.Font = new Font("LCD", 18f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt2.ForeColor = Color.Yellow;
|
||||||
|
this.txt2.Location = new Point(231, 0);
|
||||||
|
this.txt2.Margin = new Padding(0);
|
||||||
this.txt2.Name = "txt2";
|
this.txt2.Name = "txt2";
|
||||||
this.txt2.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt2.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt2.Size = new System.Drawing.Size(22, 30);
|
this.txt2.Size = new Size(22, 30);
|
||||||
this.txt2.TabIndex = 6;
|
this.txt2.TabIndex = 6;
|
||||||
this.txt2.Text = "8";
|
this.txt2.Text = "8";
|
||||||
this.txt2.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt2.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt2.Enter += this.txt_Enter;
|
||||||
// txt10
|
this.txt2.Leave += this.txt_Leave;
|
||||||
//
|
this.txt2.MouseDown += this.txt_MouseDown;
|
||||||
this.txt10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt2.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt2.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt10.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt2.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt10.Location = new System.Drawing.Point(0, 0);
|
this.txt10.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
this.txt10.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt10.ForeColor = Color.Yellow;
|
||||||
|
this.txt10.Location = new Point(0, 0);
|
||||||
this.txt10.Name = "txt10";
|
this.txt10.Name = "txt10";
|
||||||
this.txt10.Size = new System.Drawing.Size(44, 34);
|
this.txt10.Size = new Size(44, 34);
|
||||||
this.txt10.TabIndex = 9;
|
this.txt10.TabIndex = 9;
|
||||||
this.txt10.Text = "Freq";
|
this.txt10.Text = "Freq";
|
||||||
this.txt10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
this.txt10.TextAlign = ContentAlignment.MiddleLeft;
|
||||||
//
|
this.txt10.Enter += this.txt_Enter;
|
||||||
// txt9
|
this.txt10.Leave += this.txt_Leave;
|
||||||
//
|
this.txt10.MouseDown += this.txt_MouseDown;
|
||||||
this.txt9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
|
this.txt10.MouseEnter += this.txt_MouseEnter;
|
||||||
this.txt9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.txt10.MouseWheel += this.txt_MouseWheel;
|
||||||
this.txt9.Font = new System.Drawing.Font("LCD", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.txt10.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.txt9.ForeColor = System.Drawing.Color.CornflowerBlue;
|
this.txt9.BackColor = Color.FromArgb(80, 80, 80);
|
||||||
this.txt9.Location = new System.Drawing.Point(48, 0);
|
this.txt9.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.txt9.Margin = new System.Windows.Forms.Padding(0);
|
this.txt9.Font = new Font("LCD", 21.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
|
||||||
|
this.txt9.ForeColor = Color.Yellow;
|
||||||
|
this.txt9.Location = new Point(48, 0);
|
||||||
|
this.txt9.Margin = new Padding(0);
|
||||||
this.txt9.Name = "txt9";
|
this.txt9.Name = "txt9";
|
||||||
this.txt9.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0);
|
this.txt9.Padding = new Padding(0, 2, 0, 0);
|
||||||
this.txt9.Size = new System.Drawing.Size(24, 34);
|
this.txt9.Size = new Size(24, 34);
|
||||||
this.txt9.TabIndex = 10;
|
this.txt9.TabIndex = 10;
|
||||||
this.txt9.Text = "8";
|
this.txt9.Text = "8";
|
||||||
this.txt9.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
this.txt9.TextAlign = ContentAlignment.TopCenter;
|
||||||
//
|
this.txt9.Enter += this.txt_Enter;
|
||||||
// Indicator
|
this.txt9.Leave += this.txt_Leave;
|
||||||
//
|
this.txt9.MouseDown += this.txt_MouseDown;
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
this.txt9.MouseEnter += this.txt_MouseEnter;
|
||||||
this.Controls.Add(this.txt9);
|
this.txt9.PreviewKeyDown += this.txt_PreviewKeyDown;
|
||||||
this.Controls.Add(this.txt3);
|
base.AutoScaleMode = AutoScaleMode.None;
|
||||||
this.Controls.Add(this.txt4);
|
base.Controls.Add(this.txt9);
|
||||||
this.Controls.Add(this.txt5);
|
base.Controls.Add(this.txt3);
|
||||||
this.Controls.Add(this.txt6);
|
base.Controls.Add(this.txt4);
|
||||||
this.Controls.Add(this.txt7);
|
base.Controls.Add(this.txt5);
|
||||||
this.Controls.Add(this.txt8);
|
base.Controls.Add(this.txt6);
|
||||||
this.Controls.Add(this.txt0);
|
base.Controls.Add(this.txt7);
|
||||||
this.Controls.Add(this.txt1);
|
base.Controls.Add(this.txt8);
|
||||||
this.Controls.Add(this.txt2);
|
base.Controls.Add(this.txt0);
|
||||||
this.Controls.Add(this.txt10);
|
base.Controls.Add(this.txt1);
|
||||||
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
base.Controls.Add(this.txt2);
|
||||||
this.Name = "Indicator";
|
base.Controls.Add(this.txt10);
|
||||||
this.Size = new System.Drawing.Size(300, 42);
|
base.Margin = new Padding(3, 2, 3, 2);
|
||||||
this.ResumeLayout(false);
|
base.Name = "Indicator";
|
||||||
|
base.Size = new Size(300, 42);
|
||||||
|
base.ResumeLayout(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ namespace SDRSharp.Radio
|
||||||
this._grU.Clear(Color.FromArgb(64, 64, 64));
|
this._grU.Clear(Color.FromArgb(64, 64, 64));
|
||||||
using (Font font = new Font("Aerial", 6f))
|
using (Font font = new Font("Aerial", 6f))
|
||||||
{
|
{
|
||||||
using (Pen pen = new Pen(Color.CornflowerBlue))
|
using (Pen pen = new Pen(Color.Yellow))
|
||||||
{
|
{
|
||||||
for (int i = min; i <= max; i += step)
|
for (int i = min; i <= max; i += step)
|
||||||
{
|
{
|
||||||
|
|
@ -107,7 +107,7 @@ namespace SDRSharp.Radio
|
||||||
this._grU.DrawLine(pen, num, (float)(this.pic.Location.Y - this.tickSize), num, (float)this.pic.Location.Y);
|
this._grU.DrawLine(pen, num, (float)(this.pic.Location.Y - this.tickSize), num, (float)this.pic.Location.Y);
|
||||||
float height = this._grU.MeasureString(text, font).Height;
|
float height = this._grU.MeasureString(text, font).Height;
|
||||||
float num2 = (i == min) ? 2f : this._grU.MeasureString(text, font).Width;
|
float num2 = (i == min) ? 2f : this._grU.MeasureString(text, font).Width;
|
||||||
this._grU.DrawString(text, font, Brushes.CornflowerBlue, num - num2 / 2f, (float)(this.pic.Location.Y - this.tickSize) - height);
|
this._grU.DrawString(text, font, Brushes.Yellow, num - num2 / 2f, (float)(this.pic.Location.Y - this.tickSize) - height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -162,34 +162,24 @@ namespace SDRSharp.Radio
|
||||||
|
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
this.pic = new System.Windows.Forms.PictureBox();
|
this.pic = new PictureBox();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.pic)).BeginInit();
|
((ISupportInitialize)this.pic).BeginInit();
|
||||||
this.SuspendLayout();
|
base.SuspendLayout();
|
||||||
//
|
this.pic.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
|
||||||
// pic
|
this.pic.BackColor = SystemColors.ButtonFace;
|
||||||
//
|
this.pic.BorderStyle = BorderStyle.FixedSingle;
|
||||||
this.pic.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
this.pic.Location = new Point(0, 15);
|
||||||
| System.Windows.Forms.AnchorStyles.Left)
|
|
||||||
| System.Windows.Forms.AnchorStyles.Right)));
|
|
||||||
this.pic.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
|
||||||
this.pic.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
||||||
this.pic.Location = new System.Drawing.Point(0, 15);
|
|
||||||
this.pic.Name = "pic";
|
this.pic.Name = "pic";
|
||||||
this.pic.Size = new System.Drawing.Size(190, 20);
|
this.pic.Size = new Size(190, 20);
|
||||||
this.pic.TabIndex = 0;
|
this.pic.TabIndex = 0;
|
||||||
this.pic.TabStop = false;
|
this.pic.TabStop = false;
|
||||||
//
|
base.AutoScaleDimensions = new SizeF(6f, 13f);
|
||||||
// BarMeter
|
base.AutoScaleMode = AutoScaleMode.Font;
|
||||||
//
|
base.Controls.Add(this.pic);
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
base.Name = "BarMeter";
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
base.Size = new Size(200, 35);
|
||||||
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
|
((ISupportInitialize)this.pic).EndInit();
|
||||||
this.Controls.Add(this.pic);
|
base.ResumeLayout(false);
|
||||||
this.Name = "BarMeter";
|
|
||||||
this.Size = new System.Drawing.Size(200, 35);
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.pic)).EndInit();
|
|
||||||
this.ResumeLayout(false);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -112,9 +112,9 @@
|
||||||
<value>2.0</value>
|
<value>2.0</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="reader">
|
<resheader name="reader">
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
</root>
|
</root>
|
||||||
Loading…
Reference in a new issue