added logging and minor cleanup
This commit is contained in:
		
							
								
								
									
										27
									
								
								Oqtane.Client/Modules/Controls/TabPanel.razor
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								Oqtane.Client/Modules/Controls/TabPanel.razor
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,27 @@ | ||||
| @namespace Oqtane.Modules.Controls | ||||
| @inherits ThemeControlBase | ||||
|  | ||||
| @if (Parent.ActiveTabPanel == (TabPanel)(object)this) | ||||
| { | ||||
|     @ChildContent | ||||
| } | ||||
|  | ||||
| @code { | ||||
|     [CascadingParameter] | ||||
|     private TabControl Parent { get; set; } | ||||
|  | ||||
|     [Parameter] | ||||
|     public RenderFragment ChildContent { get; set; } | ||||
|  | ||||
|     [Parameter] | ||||
|     public string Text { get; set; } | ||||
|  | ||||
|     protected override void OnInitialized() | ||||
|     { | ||||
|         if (Parent == null) | ||||
|             throw new ArgumentNullException(nameof(Parent), "TabPanel must exist within a TabControl"); | ||||
|  | ||||
|         base.OnInitialized(); | ||||
|         Parent.AddTabPanel((TabPanel)(object)this); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker