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 = falsein properity window.

within button click event handler set true;

listview1.visible = true; 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -