public KnownMonikersExplorerControl(ServicesDTO state)
 {
     Loaded     += OnLoaded;
     _state      = state;
     DataContext = this;
     InitializeComponent();
 }
Пример #2
0
        public KnownMonikersExplorerWindow(ServicesDTO state)
            : base()
        {
            Caption            = Title;
            BitmapImageMoniker = KnownMonikers.Image;

            var elm = new KnownMonikersExplorerControl(state);

            Content = elm;
        }