0

我尝试将布尔烘焙值从一个类(属性类)传递给求解实例(buttonTest 类)。我已经尝试了几件事作为 Get 方法并编写了一个没有成功的属性。

namespace buttonTest
{
   public class buttonTestComponent : GH_Component
   {      
     public override void CreateAttributes()
     {
       m_attributes = new Attributes_Custom(this);
     }

   protected override void SolveInstance(IGH_DataAccess DA)
   {
       Circle circle = new Circle(2.00);
      //here I want to bake       
   }

   public class Attributes_Custom : GH_ComponentAttributes
   {
       public Attributes_Custom(GH_Component owner) : base(owner) { }
       protected override void Layout()


        bool bake;


       public bool Bake
       {
           get { return bake; }
       }



       public override GH_ObjectResponse RespondToMouseDown(GH_Canvas sender, GH_CanvasMouseEvent e)
       {
           if (e.Button == MouseButtons.Left)
           {
               RectangleF rec = ButtonBounds;
               if (rec.Contains(e.CanvasLocation))
               {
                   bool bake = true;
                   MessageBox.Show("Hello World", "Hello World", MessageBoxButtons.OK);

                   return GH_ObjectResponse.Handled;
               }
           }
           return base.RespondToMouseDown(sender, e);
       }
}

}

我是初学者,所以希望可以理解。

感谢大家

如果我尝试使用 m_attributes.Bake 我收到以下错误消息: 错误消息

4

1 回答 1

0

如果我正确理解了这个问题,您需要以下内容。

buttonTestComponent

public class buttonTestComponent : GH_Component
{    
     private Attributes_Custom m_attributes;

     public override void CreateAttributes()
     {
          m_attributes = new Attributes_Custom(this);
     }

     protected override void SolveInstance(IGH_DataAccess DA)
     {
         Circle circle = new Circle(2.00);
         //use m_attributes.Bake here
     }
}

并且您将Attributes_Custom类保持原样。

于 2019-02-26T19:26:50.193 回答