web-dev-qa-db-ja.com

DataGridViewで列幅を変更するにはどうすればよいですか?

データソースとしてデータセットを使用して、Visual StudioのSQL Server Compact 3.5を使用してデータベースとテーブルを作成しました。 WinFormには、3列のDataGridViewがあります。ただし、下の画像に示されているDataGridViewの幅全体を列が占めるようにする方法を理解できませんでした。

省略形の列の幅を広くし、説明の列をフォームの端まで拡張します。助言がありますか?

更新:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace QuickNote
{
public partial class hyperTextForm : Form
{
    private static hyperTextForm instance;

    public hyperTextForm()
    {
        InitializeComponent();
        this.WindowState = FormWindowState.Normal;
        this.MdiParent = Application.OpenForms.OfType<Form1>().First();            
    }

    public static hyperTextForm GetInstance()
    {
        if (instance == null || instance.IsDisposed)
        {
            instance = new hyperTextForm();
        }

        return instance;
    }

    private void abbreviationsBindingNavigatorSaveItem_Click(object sender, EventArgs e)
    {
        this.Validate();
        this.abbreviationsBindingSource.EndEdit();
        this.tableAdapterManager.UpdateAll(this.keywordDBDataSet);
    }

    private void hyperTextForm_Load(object sender, EventArgs e)
    {
        // TODO: This line of code loads data into the 'keywordDBDataSet.abbreviations' table. You can move, or remove it, as needed.
        this.abbreviationsTableAdapter.Fill(this.keywordDBDataSet.abbreviations);
        abbreviationsDataGridView.Columns[1].Width = 60;
        abbreviationsDataGridView.Columns[2].Width = abbreviationsDataGridView.Width - abbreviationsDataGridView.Columns[0].Width - abbreviationsDataGridView.Columns[1].Width - 72;
    }
}
}
14
tylerbhughes

Abbrev列の幅を固定ピクセル幅に設定してから、説明列の幅をDataGridViewの幅から、他の列の幅と余分なマージンの合計を差し引いた値に設定できます(防止したい場合) DataGridViewに表示される水平スクロールバー):

dataGridView1.Columns[1].Width = 108;  // or whatever width works well for abbrev
dataGridView1.Columns[2].Width = 
    dataGridView1.Width 
    - dataGridView1.Columns[0].Width 
    - dataGridView1.Columns[1].Width 
    - 72;  // this is an extra "margin" number of pixels

説明列が常にDataGridViewの幅の「残り」を占めるようにする場合は、DataGridViewのResizeイベントハンドラーに上記のコードのようなものを配置できます。

23
hmqcnoesy

「AutoSizeColumnsMode」プロパティを「Fill」に設定します。デフォルトでは「NONE」に設定されています。これで、DatagridViewの列がいっぱいになります。その後、他の列の幅を適宜設定できます。

DataGridView1.Columns[0].Width=100;// The id column 
DataGridView1.Columns[1].Width=200;// The abbrevation columln
//Third Colulmns 'description' will automatically be resized to fill the remaining 
//space
3
MShahid777