0

ControlTemplate でいくつかの UI 要素を使用して Grid オブジェクトを設定するにはどうすればよいですか? このコードを使用してみましたが、Grid オブジェクトを FrameworkElementFactory オブジェクトに設定する方法がわかりません。ありがとう

    ControlTemplate CellControlTemplate = new ControlTemplate(); // my control template
    Grid CellGrid = new Grid(); // my grid (I want add it to my control template
    FrameworkElementFactory root = new FrameworkElementFactory(typeof(Grid));
// ???
    CellControlTemplate.VisualTree = root;

コード ビハインドで xaml で設計されたスタイルを置き換えるために必要です。

<Style TargetType="{x:Type igDP:CellValuePresenter}" x:Key="PStyle">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type igDP:CellValuePresenter}">
                    <Grid Margin="4">
                        <Grid.RowDefinitions>
                            <RowDefinition />
                        </Grid.RowDefinitions>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition />
                            <ColumnDefinition Width="Auto"/>
                            <ColumnDefinition Width="Auto"/>
                        </Grid.ColumnDefinitions>
                        <TextBlock Grid.Row="0" Grid.RowSpan="2" Grid.Column="0"
                                           FontWeight="DemiBold"
                                           FontSize="18"
                                           VerticalAlignment="Center"
                                           Text="{Binding Path=DataItem.DINAMIC_COLUMN}"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

実行時にテキストボックスのバインディングパスをコードから変更したいので、私はそれをしなければなりません。他の方法を知っていますか?ありがとう。

4

1 に答える 1

3

ここに解決策があります:

var grid = new FrameworkElementFactory(typeof(Grid));
// assign template to grid 
CellControlTemplate.VisualTree = grid;
// define grid's rows 
var r = new FrameworkElementFactory(typeof(RowDefinition));
grid.AppendChild(r);
// define grid's columns
var c = new FrameworkElementFactory(typeof(ColumnDefinition));
grid.AppendChild(c);
//... etc

皆さんありがとう。

于 2011-01-06T07:22:04.813 に答える