public KnownMonikersExplorerControl(ServicesDTO state) { Loaded += OnLoaded; _state = state; DataContext = this; InitializeComponent(); }
public KnownMonikersExplorerWindow(ServicesDTO state) : base() { Caption = Title; BitmapImageMoniker = KnownMonikers.Image; var elm = new KnownMonikersExplorerControl(state); Content = elm; }