Ejemplo n.º 1
0
            /// <summary>
            /// Adds the given bind group to the page along with its associated default configuration.
            /// </summary>
            public void Add(IBindGroup bindGroup, BindDefinition[] defaultBinds)
            {
                var bindBox = new BindGroupBox()
                {
                    BindGroup = bindGroup, DefaultBinds = defaultBinds
                };

                bindGroups.Add(bindBox);
            }
Ejemplo n.º 2
0
            /// <summary>
            /// Adds the given bind group to the page.
            /// </summary>
            public void Add(IBindGroup bindGroup)
            {
                var bindBox = new BindGroupBox()
                {
                    BindGroup = bindGroup
                };

                bindGroups.Add(bindBox);
            }