|
21 | 21 | <TextBlock Text="{Binding Watcher.LastAnalysed, StringFormat=last analysed {0}, Converter={StaticResource RelativeDateConverter}}" FontSize="14" Foreground="#FFBFC7CE" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="35,-6,35,0" d:Text="last analysed just now"/> |
22 | 22 | <Button HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,-8,0,0" Command="{Binding RefreshWatchedCommand}" Background="Transparent" Foreground="#FFBFC7CE" Visibility="{Binding RefreshWatchedCommand.IsRunning, Converter={StaticResource BooleanToInverseVisibilityConverter}}"> |
23 | 23 | <ui:FontIcon Glyph="" FontSize="14" FontFamily="Segoe Fluent Icons, Segoe MDL2 Assets" /> |
| 24 | + <Button.ToolTip > |
| 25 | + <ToolTip Background="#304257" ToolTipService.InitialShowDelay="100"> |
| 26 | + <TextBlock Text="Re-analyse all watched folders" TextWrapping="NoWrap" Foreground="#FFBFC7CE" FontSize="12"/> |
| 27 | + </ToolTip> |
| 28 | + </Button.ToolTip> |
24 | 29 | </Button> |
25 | 30 | <ui:ProgressRing IsActive="{Binding RefreshWatchedCommand.IsRunning}" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="6,-6,0,0" Foreground="#FFBFC7CE" /> |
26 | 31 |
|
|
29 | 34 | <Run Text="saved" /> |
30 | 35 | </TextBlock> |
31 | 36 |
|
32 | | - <Button VerticalAlignment="Top" Content="Add To Watchlist" Background="#A26B8399" Foreground="White" HorizontalAlignment="Right" Margin="0,-26,10,0" Command="{Binding ManuallyAddFolderToWatcherCommand}" /> |
| 37 | + <Button VerticalAlignment="Top" Content="Add To Watchlist" Background="#A26B8399" Foreground="White" HorizontalAlignment="Right" Margin="0,-26,10,0" Command="{Binding ManuallyAddFolderToWatcherCommand}"> |
| 38 | + <Button.ToolTip > |
| 39 | + <ToolTip Background="#304257" ToolTipService.InitialShowDelay="100"> |
| 40 | + <TextBlock Text="Add a custom folder to the watchlist" TextWrapping="NoWrap" Foreground="#FFBFC7CE" FontSize="12"/> |
| 41 | + </ToolTip> |
| 42 | + </Button.ToolTip> |
| 43 | + </Button> |
33 | 44 |
|
34 | 45 | <ui:ListView x:Name="uiWatcherListView" Margin="-20,60,-20,0" Padding="10,0,10,0" ItemsSource="{Binding Source = {StaticResource src}}" d:ItemsSource="{Binding Source = {StaticResource dtd}}" KeyboardNavigation.TabNavigation="None" ui:ScrollViewerHelper.AutoHideScrollBars="True" > |
35 | 46 | <ui:ListView.Background> |
|
125 | 136 |
|
126 | 137 | <Button HorizontalAlignment="Right" Command="{Binding ElementName=uiWatcherListView, Path=DataContext.RemoveWatcherCommand}" CommandParameter="{Binding}" Background="#DD6B6B" Foreground="White"> |
127 | 138 | <ui:FontIcon Glyph="" FontSize="14"/> |
| 139 | + <Button.ToolTip > |
| 140 | + <ToolTip Background="#304257" ToolTipService.InitialShowDelay="100"> |
| 141 | + <TextBlock Text="Remove from Watchlist" TextWrapping="NoWrap" Foreground="#FFBFC7CE" FontSize="12"/> |
| 142 | + </ToolTip> |
| 143 | + </Button.ToolTip> |
128 | 144 | </Button> |
129 | 145 |
|
130 | 146 | <Button HorizontalAlignment="Right" Margin="0,0,35,0" Command="{Binding ElementName=uiWatcherListView, Path=DataContext.ReCompressWatchedCommand}" CommandParameter="{Binding}" Background="#6B8399" Foreground="White"> |
|
138 | 154 | </TransformGroup> |
139 | 155 | </ui:FontIcon.RenderTransform> |
140 | 156 | </ui:FontIcon> |
| 157 | + <Button.ToolTip > |
| 158 | + <ToolTip Background="#304257" ToolTipService.InitialShowDelay="100"> |
| 159 | + <TextBlock Text="Modify Compression" TextWrapping="NoWrap" Foreground="#FFBFC7CE" FontSize="12"/> |
| 160 | + </ToolTip> |
| 161 | + </Button.ToolTip> |
141 | 162 | </Button> |
142 | 163 | </Grid> |
143 | 164 |
|
|
0 commit comments