简体   繁体   中英

How to Bind TextEdit with devexpress WPF Grid cell Value?

I have a grid which displays some data wtih grouping on specific column. I want to set Grid Column Value to TextEdit of DataTemplate and bind DataTemplate to Description column.how to do?

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>

Help Appreciated! Thanks!

Could you try using templates this way:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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