|
@@ -34,7 +34,7 @@
|
34
|
34
|
Height="36"
|
35
|
35
|
Margin="0,0,0,0"
|
36
|
36
|
|
37
|
|
- Columns="9"
|
|
37
|
+ Columns="6"
|
38
|
38
|
Rows="1">
|
39
|
39
|
<!--题号-->
|
40
|
40
|
<TextBlock
|
|
@@ -42,12 +42,25 @@
|
42
|
42
|
VerticalAlignment="Center"
|
43
|
43
|
FontSize="15"
|
44
|
44
|
Text="{Binding SerialNumber}" />
|
45
|
|
- <!--题型-->
|
46
|
|
- <TextBlock
|
|
45
|
+ <Grid>
|
|
46
|
+ <StackPanel Orientation="Horizontal">
|
|
47
|
+ <TextBlock
|
47
|
48
|
HorizontalAlignment="Center"
|
48
|
49
|
VerticalAlignment="Center"
|
49
|
50
|
FontSize="15"
|
50
|
51
|
Text="{Binding VideoName}" />
|
|
52
|
+ <Button Background="Transparent"
|
|
53
|
+ Cursor="Hand"
|
|
54
|
+ BorderThickness="0">
|
|
55
|
+ <Grid>
|
|
56
|
+ <Image Source="./Images/fileDirectory1.png"/>
|
|
57
|
+ <Image Source="./Images/fileDirectory2.png" Visibility="Collapsed"/>
|
|
58
|
+ </Grid>
|
|
59
|
+ </Button>
|
|
60
|
+ </StackPanel>
|
|
61
|
+ </Grid>
|
|
62
|
+
|
|
63
|
+
|
51
|
64
|
<!--分值-->
|
52
|
65
|
<TextBlock
|
53
|
66
|
HorizontalAlignment="Center"
|
|
@@ -67,15 +80,37 @@
|
67
|
80
|
VerticalAlignment="Center"
|
68
|
81
|
FontSize="15"
|
69
|
82
|
Text="{Binding VideoTime}" />
|
|
83
|
+
|
70
|
84
|
<Grid>
|
|
85
|
+ <StackPanel Orientation="Horizontal">
|
|
86
|
+ <Button Cursor="Hand" Content="播放" FontSize="15"
|
|
87
|
+ Background="Transparent"
|
|
88
|
+ Foreground="#2D8CF0"
|
|
89
|
+ BorderThickness="0"
|
|
90
|
+ >
|
|
91
|
+ </Button>
|
|
92
|
+
|
71
|
93
|
|
72
|
|
- <Button Cursor="Hand" Content="详情" FontSize="15"
|
|
94
|
+
|
|
95
|
+ <Button Cursor="Hand" Content="上传" FontSize="15"
|
73
|
96
|
Background="Transparent"
|
74
|
97
|
Foreground="#2D8CF0"
|
75
|
98
|
BorderThickness="0"
|
76
|
99
|
>
|
77
|
|
- </Button>
|
|
100
|
+ </Button>
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+ <Button Cursor="Hand" Content="删除" FontSize="15"
|
|
105
|
+ Background="Transparent"
|
|
106
|
+ Foreground="#2D8CF0"
|
|
107
|
+ BorderThickness="0"
|
|
108
|
+ >
|
|
109
|
+ </Button>
|
|
110
|
+ </StackPanel>
|
78
|
111
|
</Grid>
|
|
112
|
+
|
|
113
|
+
|
79
|
114
|
</UniformGrid>
|
80
|
115
|
</DataTemplate>
|
81
|
116
|
</Window.Resources>
|