OSDN Git Service

.Net4対応
[filenamechenger/filenamechanger.git] / UserControl / UCFileSelectTextBox.xaml
1 <UserControl x:Class="UserControls.UCFileSelectTextBox"
2     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4     Height="25" Width="150" AllowDrop="False">
5     <Grid>
6         <TextBox Height="25" Name="textBoxFileName" VerticalAlignment="Top" HorizontalAlignment="Left" Width="125" DragEnter="textBox_DragEnter" Drop="textBox_Drop" MouseEnter="textBox_MouseEnter" AllowDrop="True" />
7         <Button Height="25" Margin="125,0,0,0" Name="buttonFileDirSelecter" VerticalAlignment="Top" Click="button_Click" AllowDrop="False">
8             <Image Name="imgFileDirSelecter" Source="dir.JPG"></Image>
9         </Button>
10     </Grid>
11 </UserControl>