Esempio n. 1
0
            public void Add(
                View child,
                DockRegion position)
            {
                if (null == child)
                {
                    throw new ArgumentNullException(nameof(child));
                }

                DockRegionProperty.SetValue(child, position);

                this.Add(child);
            }
Esempio n. 2
0
            public void Replace(
                int index,
                View child,
                DockRegion position)
            {
                if (null == child)
                {
                    throw new ArgumentNullException(nameof(child));
                }

                DockRegionProperty.SetValue(child, position);

                this.Replace(index, child);
            }