Example #1
0
 public StackPanelRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
Example #2
0
 public PreferredPositionItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
Example #3
0
 protected override void ConfigureDefaultRegionBehaviors(IRegionBehaviorFactory regionBehaviors)
 {
     ConfigureDefaultRegionBehaviorsCalled = true;
     base.ConfigureDefaultRegionBehaviors(regionBehaviors);
 }
 /// <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;
 }
Example #5
0
 public ContentModule(IUnityContainer container, IRegionManager regionManager, IRegionBehaviorFactory regionBehaviorFactory)
     : base(container, regionManager)
 {
     this.regionBehaviorFactory = regionBehaviorFactory;
 }
 public MefItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
 public HamburgerMenuItemCollectionRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
Example #8
0
 protected override IRegionBehaviorFactory ConfigureDefaultRegionBehaviors()
 {
     ConfigureDefaultRegionBehaviorsCalled = true;
     this.DefaultRegionBehaviorTypes = base.ConfigureDefaultRegionBehaviors();
     return this.DefaultRegionBehaviorTypes;
 }
Example #9
0
 public XamOutlookBarRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
Example #10
0
        /// <inheritdoc/>
        protected override void ConfigureDefaultRegionBehaviors(IRegionBehaviorFactory regionBehaviors)
        {
            base.ConfigureDefaultRegionBehaviors(regionBehaviors);

            regionBehaviors.AddIfMissing(DependentViewRegionBehavior.BehaviorKey, typeof(DependentViewRegionBehavior));
        }
Example #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)
 {
 }
Example #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;
 }
Example #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)
 {
 }
Example #14
0
 public PreferredPositionSelectorRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
Example #15
0
 public TabablzControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
Example #16
0
 public DIItemsControlRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
Example #17
0
 public DockingManagerRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
 public MefSelectorRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory) : base(regionBehaviorFactory)
 {
 }
 /// <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)
 {
 }
        protected override IRegionBehaviorFactory ConfigureDefaultRegionBehaviors()
        {
            this.ConfigureDefaultRegionBehaviorsCalled = true;
            this.MethodCalls.Add(System.Reflection.MethodBase.GetCurrentMethod().Name);
            this.DefaultRegionBehaviorTypes = base.ConfigureDefaultRegionBehaviors();

            return this.DefaultRegionBehaviorTypes;
        }
 public RibbonRegionAdapter(IRegionBehaviorFactory regionBehaviorFactory)
     : base(regionBehaviorFactory)
 {
 }
Example #22
0
 public IRegionBehaviorFactory CallConfigureDefaultRegionBehaviors()
 {
     this.DefaultRegionBehaviorTypes = base.ConfigureDefaultRegionBehaviors();
     return this.DefaultRegionBehaviorTypes;
 }
Example #23
0
 public LayoutPanelAdapter(IRegionBehaviorFactory behaviorFactory) :
     base(behaviorFactory)
 {
 }