#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
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.
 
 
 
 
 
 

22 lines
826 B

<UserControl x:Class="SharpDevelop.XamlDesigner.PropertyGrid.Editors.CollectionEditor"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Converters="clr-namespace:SharpDevelop.XamlDesigner.Converters">
<DockPanel>
<Button x:Name="uxItemsButton"
DockPanel.Dock="Right"
Content="..."
Click="uxItemsButton_Click"
Width="Auto"
Height="Auto" />
<TextBlock Text="{Binding Value, Converter={x:Static Converters:TypeNameConverter.Instance}}"
TextTrimming="CharacterEllipsis"
VerticalAlignment="Center"
Margin="5 0 0 0" />
</DockPanel>
</UserControl>