|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <Window x:Class="XHWK.WKTool.CreateAMicroLessonWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:XHWK.WKTool"
- mc:Ignorable="d"
- Title="星火微课" Height="450" Width="800" AllowsTransparency="True"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None" Loaded="Window_Loaded" Margin="0" BorderThickness="7">
- <Window.Effect>
- <DropShadowEffect BlurRadius="10" Color="#bababa" Direction="80" ShadowDepth="0"/>
- </Window.Effect>
- <Window.Resources>
- <Style x:Key="Button_Menu" TargetType="{x:Type Button}">
- <Setter Property="Width" Value="auto" />
- <Setter Property="Height" Value="auto" />
- <Setter Property="BorderThickness" Value="0" />
- <Setter Property="Foreground" Value="Black"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type Button}">
- <Border Background="#c3c3c3">
- <Border x:Name="MyBackgroundElement" Background="#F7F7F7" BorderBrush="{DynamicResource ForgroundBrush}" BorderThickness="1">
- <ContentPresenter x:Name="ButtonContentPresenter" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Border>
- </Border>
- <ControlTemplate.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter TargetName="MyBackgroundElement" Property="Background" Value="#EDF5FF"/>
- <Setter TargetName="MyBackgroundElement" Property="Opacity" Value="1"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </Window.Resources>
- <Grid>
- <Grid Background="#FF4B95FF" MouseLeftButtonDown="Window_MouseLeftButtonDown">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="520*"/>
- <ColumnDefinition Width="280*"/>
- </Grid.ColumnDefinitions>
- <!--轮播图-->
- <Grid Grid.Column="0">
- <Grid.RowDefinitions>
- <RowDefinition Height="28*"/>
- <RowDefinition Height="380*"/>
- <RowDefinition Height="28*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="15*"/>
- <ColumnDefinition Width="481*"/>
- <ColumnDefinition Width="15*"/>
- </Grid.ColumnDefinitions>
- <!--<MediaElement Grid.Row="1" Grid.Column="1" Source="/SkinImages/ImgCarousel/CM_Carousel.gif" Width="500" Height="389" HorizontalAlignment="Center" VerticalAlignment="Center">
- --><!--<MediaElement.Effect>
- <DropShadowEffect Color="#FFD3D3D3" Direction="-50" ShadowDepth="4" Opacity="0.9" />
- </MediaElement.Effect>--><!--
- </MediaElement >-->
- <Grid Grid.Row="1" Grid.Column="1" ClipToBounds="True">
- <StackPanel x:Name="SplCarouse" Orientation="Horizontal" HorizontalAlignment="Left" Margin="0" >
- <Image x:Name="ImgCarouse1" Source="/SkinImages/ImgCarousel/CM_Carousel_1.png"/>
- <Image Source="/SkinImages/ImgCarousel/CM_Carousel_2.png"/>
- <Image Source="/SkinImages/ImgCarousel/CM_Carousel_3.png"/>
- <Image Source="/SkinImages/ImgCarousel/CM_Carousel_1.png"/>
- </StackPanel>
- </Grid>
- <Grid Grid.Row="1" Grid.Column="0" Background="#FF4B95FF"></Grid>
- <Grid Grid.Row="1" Grid.Column="2" Background="#FF4B95FF"></Grid>
- </Grid>
- <!--创建-->
- <Grid Grid.Column="1">
- <Border Background="White" Margin="10,31,30,30" CornerRadius="15" >
- <Grid>
- <Image Source="/SkinImages/ImgCarousel/CM_RightDown.png" HorizontalAlignment="Right" VerticalAlignment="Top" Width="65" />
- <!--创建内页 375-->
- <Grid Margin="20,0">
- <Grid.RowDefinitions>
- <RowDefinition Height="100*"/>
- <RowDefinition Height="80*"/>
- <RowDefinition Height="80*"/>
- <RowDefinition Height="115*"/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0">
- <Label Content="创建" FontSize="21" Foreground="#FF4B62EA" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="0,42,0,0"/>
- </Grid>
- <!--讲解名称-->
- <Grid Grid.Row="1">
- <StackPanel VerticalAlignment="Center">
- <Label Content="讲解名称:" FontSize="12" Foreground="#FF666666"/>
- <TextBox x:Name="txbExplainName" Text="微课1" FontSize="14" Foreground="#FF999999" BorderBrush="{x:Null}" BorderThickness="0" Margin="5,5"/>
- <Label Background="#FF317EEC" Height="1.5"/>
- </StackPanel>
- </Grid>
- <!--存放路径-->
- <Grid Grid.Row="2">
-
- <StackPanel VerticalAlignment="Center">
- <Label Content="存放路径:" FontSize="12" Foreground="#FF666666"/>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="150"/>
- <ColumnDefinition Width="45"/>
- </Grid.ColumnDefinitions>
- <TextBox Grid.Column="0" x:Name="txbStoragePath" Text="D:\" FontSize="14" Foreground="#FF999999" BorderBrush="{x:Null}" BorderThickness="0" Margin="5,5"/>
- <Button Grid.Column="1" Cursor="Hand" x:Name="btnBrowse" FontSize="14" BorderBrush="#cccccc" BorderThickness="1" Click="BtnBrowse_Click" Content="浏览" Style="{StaticResource Button_Menu}" Background="#F7F7F7" Margin="0,5,0,0"/>
- </Grid>
- <Label Background="#FF317EEC" Height="1.5"/>
- </StackPanel>
- <!--<StackPanel Grid.Row="2" Orientation="Horizontal" Margin="30,0,30,1" Grid.ColumnSpan="2">
- <Label Content="*" FontSize="18" Padding="0,27,0,0" Foreground="#FF0000"/>
- <TextBlock Text="存放路径" FontSize="18" Padding="2,23,10,0"/>
- -->
- <!--输入框-->
- <!--
- <Border Background="#CDD6E0" Width="200" Height="43" CornerRadius="3">
- <TextBox x:Name="txbStoragePath" Text="D:\" FontSize="16" Foreground="#333333" Padding="5,12,2,2" Width="198" Height="41" BorderBrush="{x:Null}" BorderThickness="0"/>
- </Border>
- -->
- <!--浏览按钮-->
- <!--
- <Button Cursor="Hand" x:Name="btnBrowse" FontSize="18" Width="80" Height="43" BorderBrush="#cccccc" BorderThickness="1" Click="BtnBrowse_Click" Content="浏览" Style="{StaticResource Button_Menu}"
- Background="#F7F7F7" Margin="11,0,0,0"/>
- </StackPanel>-->
- </Grid>
- <!--按钮-->
- <Grid Grid.Row="3">
- <Label x:Name="LblCreate" Content="创建微课中..." FontSize="12" Foreground="#FF999999" HorizontalAlignment="Right" Visibility="Hidden"/>
- <Button Cursor="Hand" Grid.Row="3" x:Name="BtnStart" IsDefault="True" Content="开始" FontSize="18" FontWeight="Bold" Foreground="#FFFFFF" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Margin="0,0,0,30" Click="BtnStart_Click" Grid.ColumnSpan="2" Width="195" HorizontalAlignment="Center" VerticalAlignment="Center" HorizontalContentAlignment="Center" Height="33">
- <Button.Template>
- <ControlTemplate TargetType="{x:Type Button}">
- <Border BorderBrush="{TemplateBinding Control.BorderBrush}" BorderThickness="1" CornerRadius="20">
- <Border.Background>#FF1D64DA</Border.Background>
- <ContentPresenter
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Content="{TemplateBinding ContentControl.Content}" />
- </Border>
- </ControlTemplate>
- </Button.Template>
- </Button>
- </Grid>
- </Grid>
- </Grid>
- </Border>
- </Grid>
- <Button Grid.Column="1" Cursor="Hand" x:Name="btnDown" Content="×" VerticalAlignment="Top" Foreground="#FFFFFF" FontSize="25" HorizontalAlignment="Right" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnDown_Click" Padding="5,0"/>
- </Grid>
- <Grid Visibility="Collapsed">
- <!--分4行-->
- <Grid.RowDefinitions>
- <RowDefinition Height="45"/>
- <RowDefinition Height="110"/>
- <RowDefinition Height="70"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!--第一行 标题 FFE9E9E9 FF2D8CF0-->
- <Grid x:Name="GridTitle" Visibility="Visible" Margin="-1,0" Grid.Row="0" Background="#FF38ADFF" MouseLeftButtonDown="Window_MouseLeftButtonDown">
- <TextBlock Text="创建微课" Foreground="#FFFFFF" FontSize="16" Padding="10,13,0,0"/>
- <!--<Button Cursor="Hand" Grid.Row="0" x:Name="btnDown" Content="×" VerticalAlignment="Top" Foreground="#FFFFFF" FontSize="30" Padding="10,2,10,0" HorizontalAlignment="Right" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnDown_Click"/>-->
- </Grid>
- <Grid x:Name="GridTitle_Black" Visibility="Collapsed" Margin="0,0" Grid.Row="0" Background="#FFE9E9E9" MouseLeftButtonDown="Window_MouseLeftButtonDown">
- <TextBlock Text="创建微课" Foreground="#FF333333" FontSize="16" Padding="10,13,0,0"/>
- <Button Cursor="Hand" Grid.Row="0" x:Name="btnDown_Black" Content="×" VerticalAlignment="Top" Foreground="#FF333333" FontSize="30" Padding="10,2,10,0" HorizontalAlignment="Right" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="BtnDown_Click"/>
- </Grid>
- <!--第二行 讲解名称-->
- <!--第三行 存放路径-->
- </Grid>
- </Grid>
- </Window>
|