示例#1
0
        // ReSharper disable once InternalOrPrivateMemberNotDocumented
        private string SetupTypeNavControl(out TypeNavigator control)
        {
            const string controlName = "typeNav";

            control = new TypeNavigator {
                Name = controlName
            };
            control.SetValue(
                Props.RenderedTypeProperty
                , typeof(Dictionary <string, List <Tuple <int, object> > >)
                );
            return(controlName);
        }