This is a migrated thread and some comments may be shown as answers.

Display datetime picker on button click

1 Answer 70 Views
DateTimePicker
This is a migrated thread and some comments may be shown as answers.
Xaria D
Top achievements
Rank 1
Xaria D asked on 20 Jan 2011, 03:36 AM
   

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 21 Jan 2011, 05:23 AM
Hello,


You could set the Visibility property in Click handler of button.

code:
private void radButton1_Click(object sender, RoutedEventArgs e)
{
    radDatePicker1.Visibility = Visibility.Visible;
}



-Shinu.
Tags
DateTimePicker
Asked by
Xaria D
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or