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
828 B
22 lines
828 B
<UserControl x:Class="SharpDevelop.XamlDesigner.PropertyGrid.Editors.ObjectEditor" |
|
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="uxNewButton" |
|
DockPanel.Dock="Right" |
|
Content="New..." |
|
Click="uxNewButton_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>
|
|
|