11 lines
204 B
C#
11 lines
204 B
C#
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace WPF_4_Custom_User_Controls.View.UserController;
|
|||
|
|
|||
|
public partial class MenuBar : UserControl
|
|||
|
{
|
|||
|
public MenuBar()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|