我想在TextBox中设置文本,这些文本是在加载的松散xaml文件中定义的。 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>
这是一个详细信息视图,必须可以自定义而无需编译新的应用程序。在编译时不知道松散的xaml文件及其名称的数量。
如何动态设置TextBox上的Text?我有一个额外的xml-File,可以指定TextBox中的数据。
答案 0 :(得分:0)
DataContext
设置为包含值的对象。
另外,您可以使用Logical
和VisualTreeHelpers
来寻找带有正确名称的TextBox。您还可以对包含FrameworkElement
。{/ p>的StackPanel
内的FindName
进行尝试