2011-12-16 19 views
6

मेरी सेटिंग: मुझे विजुअल स्टूडियो 2008 में सी # एप्लिकेशन (.NET 3.5) मिला है। WPF या जो कुछ भी स्विच करने का कोई मौका नहीं है :)।विजुअल स्टूडियो में डिज़ाइन-टाइम पर क्लिक करने के लिए एक बटन सक्षम करें?

मेरे ऐप में एक कस्टम नियंत्रण (Windows.Forms.Button से प्राप्त एक बटन क्लास) है जो Windows.Forms.TabControl के प्रतिस्थापन के रूप में कार्य करता है। मैं इन बटनों को एक दूसरे के साथ जोड़ सकता हूं और प्रत्येक बटन को एक नियंत्रण से जोड़ा जा सकता है जिसमें यह काम कर रहा है (आमतौर पर कुछ प्रकार के विंडोज़.फॉर्म.पनेल)। यह इस तरह दिखता है:

public class TabButton : System.Windows.Forms.Button 
{ 
    // ... 
    protected override void OnClick(EventArgs e) 
    { 
     base.OnClick(e); 
     this.myAssociatedControl.Visible = true; 
     this.tellMyBuddiesToHideTheirControls(); 
    } 
    // ... 
} 

मूल रूप से यह बस एक बटन संबद्ध बटन पर क्लिक करने के लिए बाध्य नियंत्रण, इसके लिए बाध्य नियंत्रण दिखा और होने के बारे में गायब हो जाते हैं है - बस TabControl की तरह है, लेकिन दृष्टिकोण आसानी से designable है और मैं बटन को उनके सामग्री पैनलों से दूर रख सकते हैं।

समस्या: इस क्रम में बहुत अच्छी तरह से काम करता है, लेकिन डिजाइन समय में उपयोग यकीनन अजीब है: माउस के साथ, समूह से संबंधित एक नियंत्रण यही पाते हैं और जब तक <Send To Back> रों की एक श्रृंखला चलाने वांछित नियंत्रण दिखाई दे रहा है।

प्रश्न: वहाँ एक रास्ता तो यह है कि मैं जैसे मैं पर होगा सिर्फ उन्हें क्लिक करके टैब स्विच कर सकते हैं जैसे कि यह TabControl के साथ करता है डिजाइन समय में बटन पर क्लिक करता है मूल्यांकन करने के लिए वी.एस. डिजाइनर बताने के लिए है क्रम?

मैं अभी कुछ समय से खोज रहा हूं। यहां SO पर कुछ लेख हैं लेकिन वे केवल प्रॉपर्टी डिज़ाइनर को अतिरिक्त विशेषताओं को जोड़ने के लिए कवर करते हैं।

+1

अपने बाईबल है: http://msdn.microsoft.com/en-us/library/c5z9s1h4.aspx –

+1

@DavidePiras मुझे इस ओर इशारा करते हुए के लिए धन्यवाद! मुझे लगता है कि यह पूरा करने के लिए कुछ प्रयास करेगा लेकिन यह एक अच्छा प्रारंभिक बिंदु प्रतीत होता है ... – mfeineis

+0

मुझे एक समाधान मिला जो संपादन को देखता है ... – mfeineis

उत्तर

3

एडिथ का कहना है: अनुरोध करके, मेरे अपने प्रश्न का उत्तर ...

यह समाधान अपने आवेदन के लिए उपयुक्त है। यह मूल रूप से क्लिक पर कॉलबैक का उपयोग करने के लिए कस्टम डिजाइनर प्राप्त करने के लिए कुछ मोड़ों के साथ एमएसडीएन से एक उदाहरण है। उम्मीद है कि यह किसी की मदद करता है :-)।

[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] 
public class TabButtonDesigner : System.Windows.Forms.Design.ControlDesigner 
{ 
    ShowTabGlyph myGlyph = null; 
    Adorner myAdorner; 

    public TabButtonDesigner() 
    { 
    } 

    public override void Initialize(IComponent component) 
    { 
     base.Initialize(component); 

     // Add the custom set of glyphs using the BehaviorService. 
     // Glyphs live on adornders. 
     myAdorner = new Adorner(); 
     BehaviorService.Adorners.Add(myAdorner); 
     myGlyph = new ShowTabGlyph(BehaviorService, Control); 
     myGlyph.Callback =() => 
     { 
      ((MyCustomTabButton)this.Control).ShowMyTab(); 
     }; 
     myAdorner.Glyphs.Add(myGlyph); 
    } 

    class ShowTabGlyph : Glyph 
    { 
     Control control; 
     BehaviorService behaviorSvc; 

     public Action Callback 
     { 
      get; 
      set; 
     } 

     public ShowTabGlyph(BehaviorService behaviorSvc, Control control) : 
      base(new ShowTabBehavior()) 
     { 
      this.behaviorSvc = behaviorSvc; 
      this.control = control; 
     } 

     public override Rectangle Bounds 
     { 
      get 
      { 
       // Create a glyph that is 10x10 and sitting 
       // in the middle of the control. Glyph coordinates 
       // are in adorner window coordinates, so we must map 
       // using the behavior service. 
       Point edge = behaviorSvc.ControlToAdornerWindow(control); 
       Size size = control.Size; 
       Point center = new Point(edge.X + (size.Width/2), 
        edge.Y + (size.Height/2)); 

       Rectangle bounds = new Rectangle(
        center.X - 5, 
        center.Y - 5, 
        10, 
        10); 

       return bounds; 
      } 
     } 

     public override Cursor GetHitTest(Point p) 
     { 
      // GetHitTest is called to see if the point is 
      // within this glyph. This gives us a chance to decide 
      // what cursor to show. Returning null from here means 
      // the mouse pointer is not currently inside of the glyph. 
      // Returning a valid cursor here indicates the pointer is 
      // inside the glyph, and also enables our Behavior property 
      // as the active behavior. 
      if (Bounds.Contains(p)) 
      { 
       return Cursors.Hand; 
      } 

      return null; 
     } 

     public override void Paint(PaintEventArgs pe) 
     { 
      // Draw our glyph. It is simply a blue ellipse. 
      pe.Graphics.DrawEllipse(Pens.Blue, Bounds); 
     } 

     // By providing our own behavior we can do something interesting 
     // when the user clicks or manipulates our glyph. 
     class ShowTabBehavior : Behavior 
     { 
      public override bool OnMouseUp(Glyph g, MouseButtons button) 
      { 
       //MessageBox.Show("Hey, you clicked the mouse here"); 
       //this. 
       ShowTabGlyph myG = (ShowTabGlyph)g; 
       if (myG.Callback != null) 
       { 
        myG.Callback(); 
       } 
       return true; // indicating we processed this event. 
      } 
     } 
    } 
} 

[DesignerAttribute(typeof(TabButtonDesigner))] 
public class MyCustomTabButton : System.Windows.Forms.Button 
{ 
    // The attribute will assign the custom designer to the TabButton 
    // and after a rebuild the button contains a centered blue circle 
    // that acts at design time like the button in runtime does ... 

    // ... 
} 
इस
+0

यह मेरे लिए काम नहीं करता है। VisualStyleElement.TreeView.Glyph को सील कर दिया गया है, और मैं ओवरराइड नहीं कर सकता, मैं भी एक बटन क्लिक करने योग्य बनाना चाहता हूं, न कि टैबबटन – deadManN