示例#1
0
文件: MenuTabItem.cs 项目: evkap/DVS
		public MenuTabItem(MenuTubPluginAttribute menuTubPluginAttribute, Type controllerType)
		{
			_menuTubPluginAttribute = menuTubPluginAttribute;
			_controllerType = controllerType;
		}
		private MenuTabItem Convert(MenuTubPluginAttribute menuTabAttribute, Type controllerType = null)
		{
			var controllerTypeValue = menuTabAttribute.ControllerType ?? controllerType;

			return new MenuTabItem(menuTabAttribute, controllerTypeValue);
		}