繁体   English   中英

如何将文本编辑与devexpress WPF网格单元格值绑定?

[英]How to Bind TextEdit with devexpress WPF Grid cell Value?

我有一个网格,可以在特定列上显示一些数据。 我想将Grid Column Value设置为DataTemplate的TextEdit并将DataTemplate绑定到Description column。怎么办?

protected void GetAllInfills()
{
    List<Infill> infillList = new List<Infill>();
    infillList=BLL.GetAllInfills();
    if (infillList != null)
    {
        grdInfill.ItemsSource = infillList;
        grdInfill.GroupBy(grdInfill.Columns["GlassType"], ColumnSortOrder.Ascending);
        grdInfill.GroupBy(grdInfill.Columns["GlassDescription"], ColumnSortOrder.Ascending);
        grdInfill.AutoExpandAllGroups = true;
    }

}
 <Window.Resources>

        <DataTemplate x:Key="descriptionHeader">
            <Border BorderBrush="Black"  BorderThickness="1" Width="1300">
                <StackPanel Orientation="Vertical" Margin="5,5,1,5">
                    <TextBlock Name="txtdescTitle" FlowDirection="LeftToRight" VerticalAlignment="Top"  HorizontalAlignment="Left" Text="{Binding ElementName = desc, Path = DataCell}" Width="200" TextWrapping="Wrap"  /> <!--"Glass 1 description 1* INSULATED"-->
                    <StackPanel Orientation="Horizontal" Margin="5" Height="80">
                        <Image Source=".\Images\description_img.png"  Stretch="None" FlowDirection="LeftToRight" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="1"/>
                        <StackPanel Orientation="Vertical" Margin="2">
                            <TextBlock Name="txtdesc1" Margin="2" FlowDirection="LeftToRight" Text="OL:1/4' Bronze-Tempered-Solar Ban #60"  TextWrapping="Wrap"  />
                            <TextBlock Name="txtdesc2" Margin="2" FlowDirection="LeftToRight" Text="AS:1/2' Air Space with Argon"  TextWrapping="Wrap"  />
                            <TextBlock Name="txtdesc3" Margin="2" FlowDirection="LeftToRight" Text="IL:1/4' Float-Clear"  TextWrapping="Wrap"  />
                        </StackPanel>
                    </StackPanel>
                </StackPanel>

            </Border>

        </DataTemplate>
    </Window.Resources>
    <dxg:GridControl Name="grdInfill"  Height="700" VerticalAlignment="Top">
        <dxg:GridControl.Columns>

            <dxg:GridColumn FieldName="GlassType" AllowEditing="False"  />
            <dxg:GridColumn Name="desc"  FieldName="GlassDescription"   AllowEditing="False" Width="20"  GroupValueTemplate="{StaticResource descriptionHeader}"/>
            <dxg:GridColumn FieldName="GlassType" AllowEditing="False" />
            <dxg:GridColumn Name="qty" FieldName="Quantity" AllowEditing="False"  />
            <dxg:GridColumn FieldName="Width" AllowEditing="False" Header="Length"/>
            <dxg:GridColumn FieldName="Height" AllowEditing="False"/>
            <dxg:GridColumn FieldName="Elevation" AllowEditing="False"/>
 </dxg:GridControl.Columns>
  <dxg:GridControl.View>
            <dxg:TableView ShowTotalSummary="True" AutoWidth="True" DetailHeaderContent="True" ShowGroupPanel="False" ShowIndicator="False"/>
        </dxg:GridControl.View>
    </dxg:GridControl>

帮助赞赏! 谢谢!

您可以尝试通过以下方式使用模板:

<dxg:GridColumn Name="desc"  FieldName="GlassDescription"   AllowEditing="False" Width="20">
    <dxg:GridColumn.CellTemplate>
        <DataTemplate>
            <Border ...>
            </Border>
        </DataTemplate>
    </dxg:GridColumn.CellTemplate>
</dxg:GridColumn>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM