我想将RowDefinitions添加到名为通知的网格中。我可以获取数据库中的行数并迭代这些次数,但我无法将控件添加到一行。
该行已创建,但StackPanel未添加。我的代码想要动态地创建行,并向StackPanel和StackPanel创建标签和Image。在.xaml文件中,我只添加了Grid。
如何将具有StackPanel的行添加到网格?
这是我的代码:
StackPanel sp;
Label dt_label;
Image img;
BitmapImage bitmap;
string col1=null, col2 = "Picture_Path";
string Picture_Path=null;
RowDefinition gridRow1;
DateTime time;
for (int row_num = 0; row_num < No_Of_Rows; row_num++)
{
DataRow row = dt1.Rows[row_num];
foreach (object item in row.ItemArray)
{
gridRow1 = new RowDefinition();
sp = new StackPanel();
sp.Background = new SolidColorBrush(Colors.Yellow);
col1 = "Date_Time".ToString(); ;
time = DateTime.Parse(dt1.Rows[row_num][col1].ToString());
dt_label = new Label();
dt_label.Content = time;
Picture_Path = dt1.Rows[row_num][col2].ToString();
img = new Image();
bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.UriSource = new Uri(Picture_Path, UriKind.Relative);
bitmap.EndInit();
img.Source = bitmap;
img.Height = 100;
img.Width = 100;
sp.Children.Add(dt_label);
sp.Children.Add(img);
notices.RowDefinitions.Add(gridRow1);
break;
}
}
}
catch (Exception ex)
{
MessageBox.Show("ERROR \n" + ex.ToString());
}
答案 0 :(得分:0)
您必须使用Grid.SetRow和Grid.SetColumn为您的控件设置附加属性(Grid.Row
和Grid.Column
)。
在此之后,您需要将控件添加到网格中:
nameOfYourGrid.Children.Add(nameOfYourControl);
此外,代码中还有一些有趣的行:
"Date_Time".ToString(); ;
为什么要将string
转换为string
?
可以将大多数字段移至内部foreach
范围。