How to hide and show controls on selection changed event in combobox(vb.net)
-
Friday, May 11, 2012 8:36 PM
I have a combobox control. Well on selectionchanged event i want to show "delete" and "edit" button and rest of the time it should be "disabled"
How do i achieve it?
Thanks!!!
All Replies
-
Friday, May 11, 2012 11:00 PM
Hi,
first off you need to hide your 2 buttons and give them names (I called the buttons btnEdit and btndelete).
<Button Content="Edit" Name="btnEdit" Height="25" Width="100" Visibility="Hidden" /> <Button Content="Delete" Name="btnDelete" Height="25" VerticalAlignment="Top" Width="100" />
then in your selection changed event add these 2 lines of code -
btnEdit.Visibility = System.Windows.Visibility.Visible btnDelete.Visibility = System.Windows.Visibility.Visible
Hope that helps?
- Proposed As Answer by Sivakanth trichy Monday, May 14, 2012 3:57 AM
- Marked As Answer by Kee PoppyModerator Friday, May 18, 2012 7:49 AM
-
Monday, May 14, 2012 3:32 AMThanks :)

