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.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							775 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							775 B
						
					
					
				<ListBox x:Class="ICSharpCode.XamlDesigner.ErrorListView" | 
						|
         xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" | 
						|
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | 
						|
         xmlns:Services="clr-namespace:ICSharpCode.WpfDesign.Designer.Services;assembly=ICSharpCode.WpfDesign.Designer"> | 
						|
    <Control.Resources> | 
						|
        <DataTemplate DataType="{x:Type Services:XamlError}"> | 
						|
            <StackPanel Orientation="Horizontal"> | 
						|
                <Image Source="Images/Error.png" | 
						|
                       Stretch="None" | 
						|
                       Margin="2"/> | 
						|
                <TextBlock Text="{Binding Message}"  | 
						|
                           VerticalAlignment="Center"/> | 
						|
            </StackPanel> | 
						|
        </DataTemplate> | 
						|
    </Control.Resources> | 
						|
</ListBox>
 | 
						|
 |