Panel
コントロールに2つのボタンを含むUserControl
と書いています。そして、私にはいくつかの形があります。私はこれをUserControl
の形にして、底にドックさせたいと思っています。
問題は、ボタンが右揃えになっていることです。私は残したい。これを行う方法。
PS。私はDevExpressを使用していますが、それは必要ではありません。ありがとう。パネルコントロールのボタンを合わせる
答えて
here'reいくつかのソリューションが最適かもしれませんが、私は
- 1-働くあなたは別の小さなパネルの各ボタンを作成し、 を変更することがパディングだと親パネル にこれらのけん引パネルをドッキングすることができます
- 2セパレータを使う方がはるかに簡単で、親パネルの色を に設定して(右にドッキングする)>右から左へ:ボタンスプリッタボタン。
winforms AFAIKのすべてのコントロールにdockというプロパティがあります。これを使って。 または、このユーザーコントロールのXとYの位置値を使用して設定できます。しかし、フォームのサイズ変更時には、コントロールの位置を変更する必要があります。
私はすべてのコントロールのためにドックを使用した場合、それらは一緒に固執します。 – user348173
私はあなたも特定のコントロールのためにドックを使うことができると信じています。それでなぜ1つごとに?あなたはちょうど右側の右にalighnedされている下のボタンをしたいですか? – Zenwalker
はい。この場合、ボタンの間にスペースを設定することはできません。 – user348173
ボタンを1行2列のテーブルレイアウトアウトパネルに配置します。ここでは、行の高さ=自動サイズ、最初の列の幅は100%、2列目の幅は自動サイズです。私は各列にボタンを追加し、それぞれの上右にアンカーを設定します。
これを行うフォームのコードも提供しました。
Form.cs:System.Collections.Genericを使用して
using System;
。 using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms;
名前空間WindowsFormsApplication8 { 公共部分クラスをForm1:フォーム { プライベートSystem.Windows.Forms.DataGridView dataGridView1。 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2;
public Form1()
{
InitializeComponent();
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(620, 269);
this.dataGridView1.TabIndex = 0;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoSize = true;
this.tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.button1, 1, 0);
this.tableLayoutPanel1.Controls.Add(this.button2, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 240);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(620, 29);
this.tableLayoutPanel1.TabIndex = 1;
//
// button1
//
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.button1.Location = new System.Drawing.Point(542, 3);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
//
// button2
//
this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.button2.Location = new System.Drawing.Point(461, 3);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 1;
this.button2.Text = "button2";
this.button2.UseVisualStyleBackColor = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(620, 269);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.dataGridView1);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
}
}
- 1. ボタンの位置合わせ
- 2. ボタンをテーブルに合わせる
- 3. GridLayoutボタンを画面に合わせる
- 4. ボタンを右に合わせる
- 5. ボトムにボタンを合わせる
- 6. ボタンをボトムに合わせる(フロート)
- 7. ポップアップをボタンに合わせる
- 8. ボタンを入力行に合わせる
- 9. オペラの「幅に合わせる」ボタン
- 10. ボタンを上にあるテキストボックスに合わせてサイズを合わせる
- 11. Python Tkinterボタン/エントリの組み合わせ
- 12. ボタン中心の位置合わせ -
- 13. MVC3 RazorのAsp.Netパネルコントロール
- 14. 左に戻るボタンと中央のテキストを合わせる
- 15. 2つのボタンの間で角度を合わせる
- 16. ブートストラップ4のナビゲーションバーのボタンにロゴを垂直に合わせる
- 17. Xamarin.Formsグリッドの高さをボタンの幅に合わせる
- 18. ブラックベリーアプリケーションの画面の中心にボタンを合わせる
- 19. 複数のボタンを1つの円に合わせる
- 20. リニアレイアウトのボタンの配列を完全に合わせるには
- 21. iOSのボタンの内側に画像を合わせる
- 22. ツールバーのボタンをピッカーのビューに合わせる方法(swift4)
- 23. ボタンのサイズをHTMLフォームの最大ボタンに合わせて調整する
- 24. ナビゲーションバーのボタンを右端に合わせる
- 25. ボタンの色を変更する時間に合わせて
- 26. テキストタイトルのブートストラップ4とボタンを合わせる
- 27. 2つのボタンを組み合わせる方法
- 28. ピンのボタンをテキストに合わせる(縦横両方向)
- 29. RadioButton:3つのボタンを水平に背景に合わせる
- 30. コンテナの中央下部にボタンを合わせる
良い解決策。ありがとう。試してみます。 – user348173