コード例 #1
0
 public StackPanelRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #2
0
 public PreferredPositionItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
コード例 #3
0
 protected override void ConfigureDefaultRegionBehaviors(IRegionBehaviorFactory regionBehaviors)
 {
     ConfigureDefaultRegionBehaviorsCalled = true;
     base.ConfigureDefaultRegionBehaviors(regionBehaviors);
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of <see cref="CarouselViewRegionAdapter"/>.
 /// </summary>
 /// <param name="regionBehaviorFactory">The factory used to create the region behaviors to attach to the created regions.</param>
 /// <param name="container">The <see cref="IContainerProvider"/> used to resolve a new Region.</param>
 public CarouselViewRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory, IContainerProvider container)
     : base(regionBehaviorFactory)
 {
     _container = container;
 }
コード例 #5
0
ファイル: ContentModule.cs プロジェクト: mmalek06/SOATester
 public ContentModule(IUnityContainer container, IRegionManager regionManager, IRegionBehaviorFactory regionBehaviorFactory)
     : base(container, regionManager)
 {
     this.regionBehaviorFactory = regionBehaviorFactory;
 }
コード例 #6
0
 public MefItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #7
0
 public HamburgerMenuItemCollectionRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #8
0
 protected override IRegionBehaviorFactory ConfigureDefaultRegionBehaviors()
 {
     ConfigureDefaultRegionBehaviorsCalled = true;
     this.DefaultRegionBehaviorTypes = base.ConfigureDefaultRegionBehaviors();
     return this.DefaultRegionBehaviorTypes;
 }
コード例 #9
0
 public XamOutlookBarRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #10
0
        /// <inheritdoc/>
        protected override void ConfigureDefaultRegionBehaviors(IRegionBehaviorFactory regionBehaviors)
        {
            base.ConfigureDefaultRegionBehaviors(regionBehaviors);

            regionBehaviors.AddIfMissing(DependentViewRegionBehavior.BehaviorKey, typeof(DependentViewRegionBehavior));
        }
コード例 #11
0
 /// <summary>
 /// Initializes a new instance of <see cref="ContentControlRegionAdapter"/>.
 /// </summary>
 /// <param name="regionBehaviorFactory">The factory used to create the region behaviors to attach to the created regions.</param>
 public ContentControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory, IRegionManager regionManager)
     : base(regionBehaviorFactory, regionManager)
 {
 }
コード例 #12
0
 /// <summary>
 /// Initializes a new instance of <see cref="RegionAdapterBase{T}"/>.
 /// </summary>
 /// <param name="regionBehaviorFactory">The factory used to create the region behaviors to attach to the created regions.</param>
 protected RegionAdapterBase(IRegionBehaviorFactory regionBehaviorFactory)
 {
     this.RegionBehaviorFactory = regionBehaviorFactory;
 }
コード例 #13
0
 /// <summary>
 /// Initializes a new instance of <see cref="ContentControlRegionAdapter"/>.
 /// </summary>
 /// <param name="regionBehaviorFactory">The factory used to create the region behaviors to attach to the created regions.</param>
 public ContentControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
コード例 #14
0
 public PreferredPositionSelectorRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
コード例 #15
0
 public TabablzControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #16
0
 public DIItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #17
0
 public DockingManagerRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
コード例 #18
0
 public MefSelectorRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
コード例 #19
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RadTabControlAdapter"/> class.
 /// </summary>
 /// <param name="regionBehaviorFactory">The factory used to create the region behaviors to attach to the created regions.</param>
 public RadTabControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
コード例 #20
0
        protected override IRegionBehaviorFactory ConfigureDefaultRegionBehaviors()
        {
            this.ConfigureDefaultRegionBehaviorsCalled = true;
            this.MethodCalls.Add(System.Reflection.MethodBase.GetCurrentMethod().Name);
            this.DefaultRegionBehaviorTypes = base.ConfigureDefaultRegionBehaviors();

            return this.DefaultRegionBehaviorTypes;
        }
コード例 #21
0
 public RibbonRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
コード例 #22
0
ファイル: BootstrapperFixture.cs プロジェクト: eslahi/prism
 public IRegionBehaviorFactory CallConfigureDefaultRegionBehaviors()
 {
     this.DefaultRegionBehaviorTypes = base.ConfigureDefaultRegionBehaviors();
     return this.DefaultRegionBehaviorTypes;
 }
コード例 #23
0
 public LayoutPanelAdapter(IRegionBehaviorFactory behaviorFactory) :
     base(behaviorFactory)
 {
 }