This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad-examples/FormsAndWpfControls/cs/WpfUserControl.xaml.cs
2022-10-15 19:16:08 +02:00

16 lines
364 B
C#

using FormsAndWpfControls.Properties;
using System.Windows.Controls;
using Xarial.XCad.Base.Attributes;
namespace FormsAndWpfControls
{
[Icon(typeof(Resources), nameof(Properties.Resources.wpf_icon))]
public partial class WpfUserControl : UserControl
{
public WpfUserControl()
{
InitializeComponent();
}
}
}