I have created a ListView with multiple columns
(This is a part of the Xaml)
"100" Header="Indexer" DisplayMemberBinding="{Binding Number}"/> "100" Header="Name" DisplayMemberBinding="{Binding NameId}"/> "100" Header="Age" DisplayMemberBinding="{Binding Age}"/>
- public class MyItem {
public int Number { get; set; }
public int Age { get; set; }
public string NameId { get; set; }
}
- AccountList.Items.Add(new MyItem { Age = Convert.ToInt32(AgeVAlue), NameId = NameValue.ToString(), Number = ListCount });
- AccountList.Items.Contains(SpecificWord)
osyris zosarPosted Dec 13, 2020, 10:06 PM
Mageshwaran R
I am new to C# and im trying to learn everything
i understand the: if else statements, arrays, methods, classes, objects, lists and some linq and lambda expressions just the simple basic stuff.
but i see allot of things that i do not understand at all: from line 22 to 37:
this is the part that confuses me allot i do not understand it at all.
Sachin SinghPosted Dec 12, 2020, 11:28 PM
Mageshwaran RPosted Dec 12, 2020, 11:08 PM
Rajanikant HawaldarPosted Dec 12, 2020, 9:53 PM