12 lines
207 B
C#
12 lines
207 B
C#
using System.Windows.Controls;
|
|
|
|
namespace TheXamlGuy.UI.WPF.Controls;
|
|
|
|
public class FlipViewItem : ContentControl
|
|
{
|
|
public FlipViewItem()
|
|
{
|
|
DefaultStyleKey = typeof(FlipViewItem);
|
|
}
|
|
}
|