You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I am using list view for creating sale invoice my requirement is that when I will go in create sax Invoice form
So there is a list view and a button "New Row" in this list view show a row with products Drop down and quantity Text Box and price text box and total amount of this row. now end uses will select product name and enter quantity and price and when click new row then a new row will be add in list view with all fields.
The text was updated successfully, but these errors were encountered:
@shivendramca10 , This is the simplest one. You can add your new item into your listview's ItemsSource collection. Make sure your ItemsSource should be a type of ObservableCollection so that it will automatically refresh the UI on collection changed like below example.
var employeeList = listView.ItemsSource as ObservableCollection<Employess>();
//Mr. Mono will be added to the ListView because it uses an ObservableCollection
employeeList.Add(new Employee(){ DisplayName="Mr. Mono"});
Hi
I am using list view for creating sale invoice my requirement is that when I will go in create sax Invoice form
So there is a list view and a button "New Row" in this list view show a row with products Drop down and quantity Text Box and price text box and total amount of this row. now end uses will select product name and enter quantity and price and when click new row then a new row will be add in list view with all fields.
The text was updated successfully, but these errors were encountered: