Hi ,
I have images that are collapsed.Every new click in a button, I want to set an image visible.
How can I do this? Help please
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SLDeveloperPosted May 11, 2012, 9:18 AM
Check this Article ImageSlider , a better Image Slider at CsharpCorner
ponveniPosted Apr 10, 2012, 3:27 AM
For this u need to visble your images in codebhind file.Instead of Combobox u can use images
<Button Content="Add New" Height="23" HorizontalAlignment="Left" Margin="474,133,0,0" Name="btnAddNew" VerticalAlignment="Top" Width="75" Click="btnAddNew_Click" />
<ComboBox Height="23" HorizontalAlignment="Left" Margin="61,185,0,0" Name="cmbLOBAN" VerticalAlignment="Top" Width="120" Visibility="Collapsed"/>
private void btnAddNew_Click(object sender, RoutedEventArgs e)
{
cmbLOBAN.Visibility = Visibility.Visible
}
Like that you need to visible your images
SenthilkumarPosted Mar 31, 2012, 12:11 AM
Are you working on windows/web application?
You want to randomly change the image on every click? Are you looking to set the visible on the collapsed panel?