コード例 #1
0
 protected ContentControlx()
 {
     nameTypeDictionary = new NameTypeDictionary <SingleReplaySubject <object> >(this);
     this.LoadedChanges()
     .Take(1)
     .Subscribe(a =>
     {
         (this as IPropertyListener).Init();
     });
 }
コード例 #2
0
ファイル: ListBoxx.cs プロジェクト: dtwk2/UtilityWpfCore
        public ListBoxx()
        {
            dict = new(this);

            this.LoadedChanges()
            .Take(1)
            .Subscribe(a =>
            {
                (this as IPropertyListener).Init();
            });
        }