2012-06-05 13 views
6

के साथ एवलॉन डॉक मैंने SO पर कुछ प्रश्न देखा है लेकिन उनमें से कोई भी मेरे लिए लागू नहीं लग रहा था। मैं प्रिज्म 4 के साथ महान Avalondock 2.0 का उपयोग करने में सक्षम होना चाहता हूं। हालांकि, इसके लिए सभी नमूना क्षेत्र एडेप्टर Avalondock 1.x श्रृंखला के लिए है, कि मैं इसे काम नहीं कर सकता।प्रिज्म क्षेत्र एडाप्टर

क्या किसी के पास AvalonDock के layoutDocumentPane और LayoutAnchorablePane के लिए क्षेत्र एडाप्टर बनाने के तरीके पर नमूना कोड है?

उत्तर

9

दुर्भाग्यवश, मेरे सर्वोत्तम ज्ञान के लिए, "लेआउट डॉक्यूमेंटपेन" और "लेआउट एंचैरपेन" दोनों क्षेत्र एडाप्टर के समावेशन/निर्माण की अनुमति नहीं देते हैं, हालांकि "डॉकिंग प्रबंधक" करता है। एक समाधान डॉकिंग मैनेजर के लिए क्षेत्र एडाप्टर बनाना होगा जो दृश्य वृक्ष के भीतर "लेआउट दस्तावेज़" के तत्काल प्रबंधन का प्रबंधन करेगा।

XAML इस प्रकार दिखेगा:

<ad:DockingManager Background="AliceBlue" x:Name="WorkspaceRegion" prism:RegionManager.RegionName="WorkspaceRegion"> 
         <ad:LayoutRoot> 
          <ad:LayoutPanel> 
           <ad:LayoutDocumentPaneGroup> 
            <ad:LayoutDocumentPane> 

            </ad:LayoutDocumentPane> 
           </ad:LayoutDocumentPaneGroup> 
          </ad:LayoutPanel> 
         </ad:LayoutRoot> 
        </ad:DockingManager> 

ध्यान दें कि क्षेत्र DockingManager टैग में परिभाषित किया गया है और LayoutPanel के तहत एक भी LayoutDocumentPaneGroup वहां मौजूद। LayoutDocumentPaneGroup के अंतर्गत लेआउट डॉक्यूमेंटपेन "वर्कस्पेस क्षेत्र" में जोड़े जाने वाले दृश्यों से जुड़े लेआउट दस्तावेज़ होस्ट करेगा।

के रूप में के लिए RegionAdapter ही कोड है, जो नीचे मैं व्याख्यात्मक टिप्पणियां

के साथ प्रदान की का उल्लेख
#region Constructor 

     public AvalonDockRegionAdapter(IRegionBehaviorFactory factory) 
      : base(factory) 
     { 
     } 

     #endregion //Constructor 


     #region Overrides 

     protected override IRegion CreateRegion() 
     { 
      return new AllActiveRegion(); 
     } 

     protected override void Adapt(IRegion region, DockingManager regionTarget) 
     { 
      region.Views.CollectionChanged += delegate(
       Object sender, NotifyCollectionChangedEventArgs e) 
       { 
        this.OnViewsCollectionChanged(sender, e, region, regionTarget); 
       }; 

      regionTarget.DocumentClosed += delegate(
          Object sender, DocumentClosedEventArgs e) 
      { 
       this.OnDocumentClosedEventArgs(sender, e, region); 
      }; 
     } 

     #endregion //Overrides 


     #region Event Handlers 

     /// <summary> 
     /// Handles the NotifyCollectionChangedEventArgs event. 
     /// </summary> 
     /// <param name="sender">The sender.</param> 
     /// <param name="e">The event.</param> 
     /// <param name="region">The region.</param> 
     /// <param name="regionTarget">The region target.</param> 
     void OnViewsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e, IRegion region, DockingManager regionTarget) 
     { 
      if (e.Action == NotifyCollectionChangedAction.Add) 
      { 
       foreach (FrameworkElement item in e.NewItems) 
       { 
        UIElement view = item as UIElement; 

        if (view != null) 
        { 
         //Create a new layout document to be included in the LayoutDocuemntPane (defined in xaml) 
         LayoutDocument newLayoutDocument = new LayoutDocument(); 
         //Set the content of the LayoutDocument 
         newLayoutDocument.Content = item; 

         ViewModelBase_2 viewModel = (ViewModelBase_2)item.DataContext; 

         if (viewModel != null) 
         { 
          //All my viewmodels have properties DisplayName and IconKey 
          newLayoutDocument.Title = viewModel.DisplayName; 
          //GetImageUri is custom made method which gets the icon for the LayoutDocument 
          newLayoutDocument.IconSource = this.GetImageUri(viewModel.IconKey); 
         } 

         //Store all LayoutDocuments already pertaining to the LayoutDocumentPane (defined in xaml) 
         List<LayoutDocument> oldLayoutDocuments = new List<LayoutDocument>(); 
         //Get the current ILayoutDocumentPane ... Depending on the arrangement of the views this can be either 
         //a simple LayoutDocumentPane or a LayoutDocumentPaneGroup 
         ILayoutDocumentPane currentILayoutDocumentPane = (ILayoutDocumentPane)regionTarget.Layout.RootPanel.Children[0]; 

         if (currentILayoutDocumentPane.GetType() == typeof(LayoutDocumentPaneGroup)) 
         { 
          //If the current ILayoutDocumentPane turns out to be a group 
          //Get the children (LayoutDocuments) of the first pane 
          LayoutDocumentPane oldLayoutDocumentPane = (LayoutDocumentPane)currentILayoutDocumentPane.Children.ToList()[0]; 
          foreach (LayoutDocument child in oldLayoutDocumentPane.Children) 
          { 
           oldLayoutDocuments.Insert(0, child); 
          } 
         } 
         else if (currentILayoutDocumentPane.GetType() == typeof(LayoutDocumentPane)) 
         { 
          //If the current ILayoutDocumentPane turns out to be a simple pane 
          //Get the children (LayoutDocuments) of the single existing pane. 
          foreach (LayoutDocument child in currentILayoutDocumentPane.Children) 
          { 
           oldLayoutDocuments.Insert(0, child); 
          } 
         } 

         //Create a new LayoutDocumentPane and inserts your new LayoutDocument 
         LayoutDocumentPane newLayoutDocumentPane = new LayoutDocumentPane(); 
         newLayoutDocumentPane.InsertChildAt(0, newLayoutDocument); 

         //Append to the new LayoutDocumentPane the old LayoutDocuments 
         foreach (LayoutDocument doc in oldLayoutDocuments) 
         { 
          newLayoutDocumentPane.InsertChildAt(0, doc); 
         } 

         //Traverse the visual tree of the xaml and replace the LayoutDocumentPane (or LayoutDocumentPaneGroup) in xaml 
         //with your new LayoutDocumentPane (or LayoutDocumentPaneGroup) 
         if (currentILayoutDocumentPane.GetType() == typeof(LayoutDocumentPane)) 
          regionTarget.Layout.RootPanel.ReplaceChildAt(0, newLayoutDocumentPane); 
         else if (currentILayoutDocumentPane.GetType() == typeof(LayoutDocumentPaneGroup)) 
         { 
          currentILayoutDocumentPane.ReplaceChild(currentILayoutDocumentPane.Children.ToList()[0], newLayoutDocumentPane); 
          regionTarget.Layout.RootPanel.ReplaceChildAt(0, currentILayoutDocumentPane); 
         } 
         newLayoutDocument.IsActive = true; 
        } 
       } 
      } 
     } 

     /// <summary> 
     /// Handles the DocumentClosedEventArgs event raised by the DockingNanager when 
     /// one of the LayoutContent it hosts is closed. 
     /// </summary> 
     /// <param name="sender">The sender</param> 
     /// <param name="e">The event.</param> 
     /// <param name="region">The region.</param> 
     void OnDocumentClosedEventArgs(object sender, DocumentClosedEventArgs e, IRegion region) 
     { 
      region.Remove(e.Document.Content); 
     } 

     #endregion //Event handlers 

अपने Bootstrapper में नीचे दिए गए कोड को जोड़ने के लिए मत भूलना इतना है कि प्रिज्म अपने RegionAdapter

के अस्तित्व के बारे में पता है
protected override RegionAdapterMappings ConfigureRegionAdapterMappings() 
     { 
      // Call base method 
      var mappings = base.ConfigureRegionAdapterMappings(); 
      if (mappings == null) return null; 

      // Add custom mappings 
      mappings.RegisterMapping(typeof(DockingManager), 
       ServiceLocator.Current.GetInstance<AvalonDockRegionAdapter>()); 

      // Set return value 
      return mappings; 
     } 

वोला। मुझे पता है कि यह समाधान की सबसे साफ नहीं है लेकिन इसे काम करना चाहिए। एक ही दृष्टिकोण को आसानी से "लेआउटअंचलपेन" पर लागू किया जा सकता है।

लाइव लंबे और समृद्ध रहें!

+0

+1: 'ILayoutDocumentPane' पर भाग ने मुझे –

+0

में मदद की, मुझे खुशी है कि यह हुआ। :-) –

+0

मेरे पास लेआउटअंच्यापेन और लेआउटअंच्या दस्तावेज़ के लिए एडाप्टर हैं और कभी-कभी यह एडेप्टर पंजीकृत करता है .. कभी-कभी नहीं। अधिक निराश। – Vlad

संबंधित मुद्दे