I have a C# code and must it write at xaml.
My code:
foreach (item i in List.Items)
{
Label lb =new Label;
lb.VerticalAlignment=Center;
lb.Content= List.Items.Name;
lb.Width="120";
mGrid.Children.Add(lb);
}
mGrid is a Grid in my xaml code. List is a List. the list became the content from a file. if in this file are 2 entry's, i had to create to labels. if there are 4, i must create 4. if there are 7, create 7. and so on.
It works fine with C#, but I have to write it in xaml code. How can I do this?
greetings