You can add the Items to a List Box control in Xaml using the Items property . The Items property is an ItemCollection which implements IList.
How to add Items to ListBox control in Xaml ?
Below is a sample code snippet demonstrating the adding of the Items to ListBox in Xaml of a Windows 10 UWP App.
<ListBox xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <ListBox.Items> <ListBoxItem Content="Abundantcode 1"/> <ListBoxItem Content="Abundantcode 2"/> </ListBox.Items> </ListBox>
The above showed how to add items to listbox in Xaml . The same can be added via C# from code behind as well as shown below.
Windows.UI.Xaml.Controls.ListBox listboxcontrol = new Windows.UI.Xaml.Controls.ListBox(); Windows.UI.Xaml.Controls.ListBoxItem acitem1 new Windows.UI.Xaml.Controls.ListBoxItem(); Windows.UI.Xaml.Controls.ListBoxItem acitem2 = new Windows.UI.Xaml.Controls.ListBoxItem(); acitem1.Content = "Abundantcode 1"; acitem2.Content = "Abundantcode 2"; listboxcontrol.Items.Add(acitem1); listboxcontrol.Items.Add(acitem2);
Leave a Reply