You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							1.1 KiB
						
					
					
				<UserControl x:Class="ICSharpCode.XamlDesigner.ToolboxView" | 
						|
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | 
						|
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | 
						|
             xmlns:Outline="clr-namespace:ICSharpCode.WpfDesign.Designer.OutlineView;assembly=ICSharpCode.WpfDesign.Designer" | 
						|
             xmlns:Default="clr-namespace:ICSharpCode.XamlDesigner"> | 
						|
	<UserControl.ContextMenu> | 
						|
		<ContextMenu> | 
						|
			<MenuItem Header="Browse..." Click="BrowseForAssemblies_OnClick"></MenuItem> | 
						|
		</ContextMenu> | 
						|
	</UserControl.ContextMenu> | 
						|
	<UserControl.Resources> | 
						|
		 | 
						|
		<HierarchicalDataTemplate DataType="{x:Type Default:AssemblyNode}" | 
						|
			ItemsSource="{Binding Controls}"> | 
						|
			<Outline:IconItem Icon="Images/Reference.png" | 
						|
				Text="{Binding Name}" | 
						|
				ToolTip="{Binding Path}" /> | 
						|
		</HierarchicalDataTemplate> | 
						|
		 | 
						|
		<DataTemplate DataType="{x:Type Default:ControlNode}"> | 
						|
			<Outline:IconItem Icon="Images/Tag.png" | 
						|
				Text="{Binding Type.Name}" /> | 
						|
		</DataTemplate> | 
						|
	 | 
						|
	</UserControl.Resources> | 
						|
	 | 
						|
	<TreeView x:Name="uxTreeView" | 
						|
	          ItemsSource="{Binding AssemblyNodes}" | 
						|
	          BorderThickness="0"/> | 
						|
 | 
						|
</UserControl>
 | 
						|
 |