コード例 #1
0
        public Playground(ComponentBuilderOptions options)
        {
            InitializeComponent();

            options.Content = Content;

            ComponentBuilder.Init(options);
        }
コード例 #2
0
 public ComponentBuilderOptionsUsage()
 {
     ComponentBuilder.Init(new ComponentBuilderOptions
     {
         // Content = Content,
         PreserveSession                 = false,
         SuppressAllBackGroundColor      = false,
         EnableRepeater                  = false,
         EnableRestorationOfUIAttributes = false,
         EnableTapGestureRecognizers     = false,
         EnableUIAttributesGeneration    = false
     });
 }
コード例 #3
0
 public void Init(string callee = "local")
 {
     ComponentBuilder.Init(new ComponentBuilderOptions
     {
         Content                         = Content,
         PreserveSession                 = true,
         SuppressAllBackGroundColor      = false,
         EnableRepeater                  = true,
         EnableRestorationOfUIAttributes = true,
         EnableTapGestureRecognizers     = true,
         EnableUIAttributesGeneration    = true,
         CompressLayout                  = false,
         Apply = true
     });
 }