Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created June 4, 2013 07:53
Show Gist options
  • Save dkalamari/5704297 to your computer and use it in GitHub Desktop.
Save dkalamari/5704297 to your computer and use it in GitHub Desktop.
WPF Button next to textbox
<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