|
8 | 8 | MinHeight="600" MinWidth="800" |
9 | 9 | x:Class="Avalonix.View.MainWindow" |
10 | 10 | x:DataType="main1:MainWindowViewModel" |
11 | | - Title="Avalonix"> |
| 11 | + Title="Avalonix" |
| 12 | + Icon="/Assets/avalonix-logo.ico"> |
12 | 13 |
|
13 | 14 | <Design.DataContext> |
14 | 15 | <main1:MainWindowViewModel /> |
|
107 | 108 | Orientation="Horizontal" Margin="5,0,5,5" |
108 | 109 | HorizontalAlignment="Left" |
109 | 110 | VerticalAlignment="Top"> |
110 | | - <ListBox Name="SongBox" Width="" Height="300"/> |
| 111 | + <ListBox Name="SongBox" Width="" Height="300" /> |
111 | 112 | </WrapPanel> |
112 | 113 | </Grid> |
113 | 114 | </Border> |
|
146 | 147 |
|
147 | 148 | <Border Grid.Row="1" Grid.Column="1" Height="70"> |
148 | 149 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> |
| 150 | + <Button Click="ShuffleButton_OnClick" Name="Shuffle" |
| 151 | + Width="50" Height="50" Margin="5,0"> |
| 152 | + <Image Source="../Assets/buttons/EnableSnuffle.png" Width="35" Height="35" /> |
| 153 | + </Button> |
| 154 | + |
149 | 155 | <Button Name="BackButton" Click="PlayTrackBefore_OnClick" |
150 | | - Width="60" Height="60"> |
151 | | - <Image Source="../Assets/buttons/back.png" Width="24" Height="24" /> |
| 156 | + Width="50" Height="50" Margin="5,0"> |
| 157 | + <Image Source="../Assets/buttons/back.png" Width="35" Height="35" /> |
152 | 158 | </Button> |
153 | 159 |
|
154 | 160 | <Button Name="PauseButton" Click="PauseButton_OnClick" |
155 | | - Width="60" Height="60"> |
156 | | - <Image Source="../Assets/buttons/pause.png" Width="24" Height="24" /> |
| 161 | + Width="50" Height="50" Margin="5,0"> |
| 162 | + <Image Source="../Assets/buttons/pause.png" Width="35" Height="35" /> |
157 | 163 | </Button> |
158 | 164 |
|
159 | 165 | <Button Name="NextButton" Click="PlayNextTrack" |
160 | | - Width="60" Height="60"> |
161 | | - <Image Source="../Assets/buttons/next.png" Width="24" Height="24" /> |
162 | | - </Button> |
163 | | - |
164 | | - <Button Click="ShuffleButton_OnClick" Name="Shuffle" |
165 | | - Width="60" Height="60"> |
166 | | - <Image Source="../Assets/buttons/EnableSnuffle.png" Width="24" Height="24" /> |
| 166 | + Width="50" Height="50" Margin="5,0"> |
| 167 | + <Image Source="../Assets/buttons/next.png" Width="35" Height="35" /> |
167 | 168 | </Button> |
168 | 169 |
|
169 | 170 | <Button Click="LoopButton_OnClick" Name="Loop" |
170 | | - Width="60" Height="60"> |
171 | | - <Image Source="../Assets/buttons/EnableLoop.png" Width="24" Height="24" /> |
| 171 | + Width="50" Height="50" Margin="5,0"> |
| 172 | + <Image Source="../Assets/buttons/EnableLoop.png" Width="35" Height="35" /> |
172 | 173 | </Button> |
173 | 174 | </StackPanel> |
174 | 175 | </Border> |
|
0 commit comments