c# - How to get the listview loaded in the form only after the button is clicked? -
in project, need listview containing data end, if place listview in form , upon clicking button can load data, requirement listview should hidden or not present there, on clicking button listview should viewed data. thank you.
set list view's property visible = false
in properity window.
within button click event handler set true;
listview1.visible = true;
Comments
Post a Comment