|
|
|
@ -13,7 +13,7 @@
|
|
|
|
<vm:FileListViewModel/>
|
|
|
|
<vm:FileListViewModel/>
|
|
|
|
</UserControl.DataContext>
|
|
|
|
</UserControl.DataContext>
|
|
|
|
|
|
|
|
|
|
|
|
<Border Background="#1E2241">
|
|
|
|
<Border>
|
|
|
|
<Grid>
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="100"/>
|
|
|
|
<RowDefinition Height="100"/>
|
|
|
|
@ -21,19 +21,38 @@
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
<!-- File List Row -->
|
|
|
|
<!-- File List Row -->
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
<Grid>
|
|
|
|
<Image Source="/Resources/Images/ListImage.png"
|
|
|
|
<Image Source="/Resources/Images/ListImage.png"
|
|
|
|
Width="35" Margin="20 0"/>
|
|
|
|
Width="35" Margin="20 0"
|
|
|
|
|
|
|
|
HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="파일 목록" FontFamily="{StaticResource SCDream5}"
|
|
|
|
<TextBlock Text="파일 목록" FontFamily="{StaticResource SCDream5}"
|
|
|
|
FontSize="20" FontWeight="Bold" Foreground="White"
|
|
|
|
FontSize="20" FontWeight="Bold" Foreground="White"
|
|
|
|
VerticalAlignment="Center"/>
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
|
|
|
|
Margin="0 0 30 0"/>
|
|
|
|
<Button Width="40" Height="40"
|
|
|
|
<Button Width="40" Height="40"
|
|
|
|
Margin="30 0" Padding="0"
|
|
|
|
Margin="20 0" Padding="0"
|
|
|
|
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
Background="#ffd663"
|
|
|
|
Background="#ffd663"
|
|
|
|
Command="{Binding OpenFileDialogCommand}">
|
|
|
|
Command="{Binding OpenFileDialogCommand}">
|
|
|
|
<materialDesign:PackIcon Kind="FolderAdd"/>
|
|
|
|
<materialDesign:PackIcon Kind="FolderAdd"/>
|
|
|
|
</Button>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="1" Text="파일을 업로드하세요"
|
|
|
|
|
|
|
|
VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
|
|
|
|
|
|
FontSize="16" FontWeight="Medium" Foreground="Gray"
|
|
|
|
|
|
|
|
FontFamily="{StaticResource SCDream4}">
|
|
|
|
|
|
|
|
<TextBlock.Style>
|
|
|
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
|
|
|
<DataTrigger Binding="{Binding FileList.Count}" Value="0">
|
|
|
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
</TextBlock.Style>
|
|
|
|
|
|
|
|
</TextBlock>
|
|
|
|
|
|
|
|
|
|
|
|
<ScrollViewer Grid.Row="1" Margin="10" >
|
|
|
|
<ScrollViewer Grid.Row="1" Margin="10" >
|
|
|
|
<ListView
|
|
|
|
<ListView
|
|
|
|
|