All the controls missing in WPF. Over 1 million downloads.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
737 B

using System;
using Samples.Infrastructure.Controls;
using Microsoft.Practices.Prism.Regions;
namespace Samples.Modules.Button.Views
{
/// <summary>
/// Interaction logic for DropDownButtonView.xaml
/// </summary>
[RegionMemberLifetime(KeepAlive = false)]
public partial class DropDownButtonView : DemoView
{
public DropDownButtonView()
{
InitializeComponent();
}
private void DropDownButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
}
private void Button_Click(object sender, System.Windows.RoutedEventArgs e)
{
_dropDownButton.IsOpen = false;
}
}
}