如何使用C#2010 Express实现类似网格的控件

时间:2010-11-22 02:08:42

标签: c# controls

我需要这样的控件:

alt text

这是来自Microsoft Word:Insert =>符号。

  1. 此对话框具有类似网格的控件,其中包含Unicode字符列表;
  2. 您可以选择任何字符;
  3. 显示所选字符的Unicode;
  4. 用户无法编辑角色;
  5. 此外,我需要扩展它的功能: 1.用户可以删除所选字符的单元格; 2.用户可以添加一个字符列表(来自文件或其他)。

    我在问我应该用什么内置控件来实现这个特定的控件。

    感谢。

    彼得

2 个答案:

答案 0 :(得分:1)

在WinForms中,您可以在运行时向Label添加固定大小的FlowLayoutPanel控件。

请注意,这不会很好地扩展;不要制作成千上万的Label控件 如果你想要大量的字符,你可以制作一个完整的标签,然后添加一个ScrollBar控件并处理Scroll事件以更改标签标题。

答案 1 :(得分:1)

我能够使用标准DataGridView控件创建一个简单的模拟。

DataGridView

private void InitilizeDataGridView(DataGridView view)
{
    var defaultCellStyle = new DataGridViewCellStyle();

    defaultCellStyle.ForeColor = SystemColors.ControlText;
    defaultCellStyle.WrapMode = DataGridViewTriState.False;
    defaultCellStyle.SelectionBackColor = SystemColors.Highlight;
    defaultCellStyle.BackColor = System.Drawing.SystemColors.Window;
    defaultCellStyle.SelectionForeColor = SystemColors.HighlightText;
    defaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
    defaultCellStyle.Font = new Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0)));

    view.DefaultCellStyle = defaultCellStyle;

    view.MultiSelect = false;
    view.RowHeadersVisible = false;
    view.AllowUserToAddRows = false;
    view.ColumnHeadersVisible = false;
    view.AllowUserToResizeRows = false;
    view.AllowUserToDeleteRows = false;
    view.AllowUserToOrderColumns = true;
    view.AllowUserToResizeColumns = false;

    view.BackgroundColor = SystemColors.Control;

    for(var i = 0; i < 16; i++)
    {              
        view.Columns.Add(new DataGridViewTextBoxColumn { AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, Resizable = DataGridViewTriState.False });
    }

    DataGridViewRow row = null;

    for (int index = 32, cell = 0; index < 255; index++, cell++)
    {
        if(cell % 16 == 0)
        {
            if(row != null)
            {
                view.Rows.Add(row);
            }

            row = new DataGridViewRow { Height = 40 };
            row.CreateCells(view);

            cell = 0;
        }

        if (row != null)
        {
            row.Cells[cell].Value = Char.ConvertFromUtf32(index);
        }               
    }            
}