3

ロードされたルース xaml ファイルで定義されている TextBoxes にテキストを設定したいと考えています。TextBoxes はアプリケーションの一部です。

StackPanel LooseRoot;

        if (fTeleFound == true)
        {
            try
            {
                using (System.IO.FileStream fs = new System.IO.FileStream(sXamlFileName, System.IO.FileMode.Open))
                {
                    LooseRoot = (StackPanel)System.Windows.Markup.XamlReader.Load(fs);
                }
                this.DetailsViewFrame.Children.Add(LooseRoot);
            }
            catch (ArgumentException ex)
            {
                // TBD Error xamlfile
                return;
            }


            // set Elements
            //foreach (TextBox textBox in LooseRoot.Children as TextBox) // does not work ?
            //{
                //

            //}
        }

xaml ファイルは次のようになります。

<StackPanel Margin="10" Orientation="Vertical"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> 

<StackPanel Orientation="Horizontal">
    <Label Margin="5,5,0,5">CRCDB=</Label>
    <TextBox Margin="0,5,5,5" Name="DetailsviewTB1" Height="20"/>

    <Label Margin="10,5,0,5">Infonummer=</Label>
    <TextBox Margin="0,5,5,5" Name="DetailsviewTB2" Height="20"/>

    <Label Margin="10,5,0,5">Daten=</Label>
    <TextBox Margin="0,5,5,5" Name="DetailsviewTB3" Height="20"/>
</StackPanel>

これは、アプリケーションを新規にコンパイルせずにカスタマイズ可能にする必要がある詳細ビュー用です。Loose xaml ファイルの量とその名前は、コンパイル時にはわかりません。

TextBoxes にテキストを動的に設定するにはどうすればよいですか? どのデータがどの TextBox に入るかを指定できる追加の xml-File があります。

4

1 に答える 1

0

それらをバインドできますか?もしそうなら、それを行うことを絶対にお勧めしDataContextます。値を含むオブジェクトに を設定するだけです。

それ以外の場合は、適切な名前の TextBox を再帰的に探して、Logicalandをいじることができます。を含むものをVisualTreeHelpers試着することもできます。FindNameFrameworkElementStackPanel

于 2012-08-03T23:09:26.527 に答える