4

嘿伙计们..

我的想法是使用 DataGrid 作为映射器模板,首先网格将从“表 A”加载数据,其中一个列将显示来自“表 B”的数据

我有一个像这样的“表 B”:

fieldtype_id | fieldtype_name
     1             int
     2             varchar
     3             date

我想使用 DataGridComboBoxColumn 在 wpf Datagrid 中显示此表。

所以,我在其中创建了一个 wpf 窗口和数据网格,下面是 XAML

<DataGrid AutoGenerateColumns="False" HorizontalAlignment="Left" Margin="12,123,0,176" Name="dataGrid1" Width="1000" 
              ItemsSource="{Binding}" SelectionUnit="CellOrRowHeader" CanUserAddRows="False" 
              CellEditEnding="dataGrid1_CellEditEnding" CurrentCellChanged="dataGrid1_CurrentCellChanged">

        <DataGrid.Columns>

            <DataGridComboBoxColumn
                             Header="Field Type" Width="200" 
                             DisplayMemberPath="Value"
                             SelectedValueBinding="{Binding fieldtypeSS, Mode=TwoWay}"
                             SelectedValuePath="{Binding fieldtype_id}">

                <DataGridComboBoxColumn.ElementStyle>
                    <Style TargetType="ComboBox">
                        <Setter Property="IsSynchronizedWithCurrentItem" Value="False" />
                        <Setter Property="ItemsSource" Value="{Binding Path=fieldtype_id}" />
                    </Style>
                </DataGridComboBoxColumn.ElementStyle>

                <DataGridComboBoxColumn.EditingElementStyle>
                    <Style TargetType="ComboBox">
                        <Setter Property="ItemsSource" Value="{Binding Path=fieldtype_id}" />
                        <Setter Property="IsDropDownOpen" Value="True" />
                    </Style>
                </DataGridComboBoxColumn.EditingElementStyle>
            </DataGridComboBoxColumn>


        </DataGrid.Columns>

</DataGrid>

然后,我创建一个类:

public class cMapHeader
{
    public int fieldtypeSS { get; set; }
    public Dictionary<string, string> fieldtype_id { get; set; }
}

然后,使用我之前创建的方法填充表格

//## Get MysqlFieldType
//## dboperation.dtQueries is my method to populate data, and return as DataTable
Dictionary<string, string> mysqlFieldType = new Dictionary<string, string>();

foreach (DataRow row in dboperation.dtQueries("SELECT fieldtype_id, fieldtype_name FROM mysql_Fieldtype ").Rows)
{
    mysqlFieldType.Add(row["fieldtype_id"].ToString(), row["fieldtype_name"] as string);
}

接下来,填充网格

gridMapHeader = new ObservableCollection<cMapHeader>()
        {
           new cMapHeader(){fieldtypeSS="1",fieldtype_id=mysqlFieldType},
           new cMapHeader(){fieldtypeSS="2",fieldtype_id=mysqlFieldType}

        };
dataGrid1.BeginInit();

dataGrid1.SetBinding(ItemsControl.ItemsSourceProperty, new Binding
      {
         Source = gridMapHeader
      });

问题是,应该包含 fieldtypeSS 的单元格不显示,但是在编辑模式下,DataGridComboBoxColumn 显示我想要正确的值(仅显示“表 B”的 fieldtype_name)。

那么第二个问题是,当单元格失去焦点时,从 DataGridComboBoxColumn 中选择的值会丢失..

谁能帮我?

非常感谢任何帮助:D

谢谢b4

4

1 回答 1

1

为了解决您的两个问题,您的:

SelectedValuePath="{绑定 fieldtype_id}"

应该:

SelectedValuePath="fieldtype_id"

于 2016-08-25T14:40:44.597 回答