|
Query one |
Currently, we are analyzing your requirement of “Show Popup in a click”. We will validate and update you the details on or before January 27, 2021. |
|
Query two |
We have analyzed your query “displays month view". We suggest you to use Property Pattern as “YearMonth” and We have prepared a simple sample for displays month view. Please have the sample from the below link. Sample Link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/MonthView-225981943.zip |
|
private void dateTimeEdit_PreviewMouseUp(object sender, MouseButtonEventArgs e)
{
if (dateTimeEdit != null && dateTimeEdit.IsFocused && !dateTimeEdit.CanEdit)
{
dateTimeEdit.IsDropDownOpen = true;
}
}
private void Window_MouseDown(object sender, MouseButtonEventArgs e)
{
if (dateTimeEdit.IsDropDownOpen)
{
dateTimeEdit.IsDropDownOpen = false;
}
} |