Created
June 4, 2013 07:53
-
-
Save dkalamari/5704297 to your computer and use it in GitHub Desktop.
WPF Button next to textbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<DockPanel LastChildFill="True" Grid.Column="1" Grid.Row="1" Margin="0"> | |
<Button ToolTip="Edit" DockPanel.Dock="Right" Width="Auto" Height="20" VerticalAlignment="Bottom" Content="Edit" Command="{Binding OpenTextEditorCommand}"/> | |
<TextBox DockPanel.Dock="Left" Width="Auto" MinHeight="60" MaxHeight="100" Text="{Binding Model.Text, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}" HorizontalAlignment="Stretch" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" AcceptsReturn="True" ></TextBox> | |
</DockPanel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment