|
38 | 38 | <uc:ComboBoxEx |
39 | 39 | x:Name="AppLanguagesComboBox" |
40 | 40 | HorizontalAlignment="Left" |
41 | | - AutomationProperties.AutomationControlType="Custom" |
| 41 | + AutomationProperties.AutomationControlType="CheckBox" |
42 | 42 | AutomationProperties.Name="{helpers:ResourceString Name=Language}" |
43 | 43 | ItemsSource="{x:Bind ViewModel.AppLanguages}" |
44 | 44 | SelectedIndex="{x:Bind ViewModel.SelectedAppLanguageIndex, Mode=TwoWay}"> |
|
61 | 61 | <uc:ComboBoxEx |
62 | 62 | x:Name="DateFormatChooser" |
63 | 63 | Grid.Column="1" |
64 | | - AutomationProperties.AutomationControlType="Custom" |
| 64 | + AutomationProperties.AutomationControlType="CheckBox" |
65 | 65 | AutomationProperties.Name="{helpers:ResourceString Name=DateFormat}" |
66 | 66 | ItemsSource="{x:Bind ViewModel.DateFormats}" |
67 | 67 | SelectedIndex="{x:Bind ViewModel.SelectedDateTimeFormatIndex, Mode=TwoWay}"> |
|
91 | 91 | <FontIcon Glyph="" /> |
92 | 92 | </wctcontrols:SettingsExpander.HeaderIcon> |
93 | 93 | <uc:ComboBoxEx |
94 | | - AutomationProperties.AutomationControlType="Custom" |
| 94 | + AutomationProperties.AutomationControlType="CheckBox" |
95 | 95 | AutomationProperties.Name="{helpers:ResourceString Name=StartupSettings}" |
96 | 96 | SelectedIndex="{x:Bind ViewModel.SelectedStartupSettingIndex, Mode=OneWay}"> |
97 | 97 | <ComboBoxItem Content="{helpers:ResourceString Name=SettingsOnStartupOpenANewTab/Content}" IsSelected="{x:Bind ViewModel.OpenNewTabPageOnStartup, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> |
|
163 | 163 | ToolTipService.ToolTip="{x:Bind Text}" /> |
164 | 164 | <Button |
165 | 165 | HorizontalAlignment="Right" |
166 | | - AutomationProperties.AutomationControlType="Custom" |
| 166 | + AutomationProperties.AutomationControlType="CheckBox" |
167 | 167 | AutomationProperties.Name="{helpers:ResourceString Name=Remove}" |
168 | 168 | Click="RemoveStartupPage" |
169 | 169 | ToolTipService.ToolTip="{helpers:ResourceString Name=Remove}"> |
|
177 | 177 |
|
178 | 178 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=OpenTabInExistingInstance}"> |
179 | 179 | <ToggleSwitch |
180 | | - AutomationProperties.AutomationControlType="Custom" |
| 180 | + AutomationProperties.AutomationControlType="CheckBox" |
181 | 181 | AutomationProperties.Name="{helpers:ResourceString Name=OpenTabInExistingInstance}" |
182 | 182 | IsOn="{x:Bind ViewModel.OpenTabInExistingInstance, Mode=TwoWay}" /> |
183 | 183 | </wctcontrols:SettingsCard> |
|
190 | 190 | <FontIcon Glyph="" /> |
191 | 191 | </wctcontrols:SettingsExpander.HeaderIcon> |
192 | 192 | <ToggleSwitch |
193 | | - AutomationProperties.AutomationControlType="Custom" |
| 193 | + AutomationProperties.AutomationControlType="CheckBox" |
194 | 194 | AutomationProperties.Name="{helpers:ResourceString Name=SettingsMultitaskingAlwaysOpenDualPane}" |
195 | 195 | IsOn="{x:Bind ViewModel.AlwaysOpenDualPaneInNewTab, Mode=TwoWay}" /> |
196 | 196 | <wctcontrols:SettingsExpander.Items> |
197 | 197 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=DefaultPaneArrangement}"> |
198 | 198 | <uc:ComboBoxEx |
199 | | - AutomationProperties.AutomationControlType="Custom" |
| 199 | + AutomationProperties.AutomationControlType="CheckBox" |
200 | 200 | AutomationProperties.Name="{helpers:ResourceString Name=DefaultPaneArrangement}" |
201 | 201 | ItemsSource="{x:Bind ViewModel.ShellPaneArrangementTypes.Values}" |
202 | 202 | SelectedItem="{x:Bind ViewModel.SelectedShellPaneArrangementType, Mode=TwoWay}" /> |
|
211 | 211 | </wctcontrols:SettingsCard.HeaderIcon> |
212 | 212 | <ToggleSwitch |
213 | 213 | x:Name="AlwaysSwitchToNewlyOpenedTab" |
214 | | - AutomationProperties.AutomationControlType="Custom" |
| 214 | + AutomationProperties.AutomationControlType="CheckBox" |
215 | 215 | AutomationProperties.Name="{helpers:ResourceString Name=AlwaysSwitchToNewlyOpenedTab}" |
216 | 216 | IsOn="{x:Bind ViewModel.AlwaysSwitchToNewlyOpenedTab, Mode=TwoWay}" /> |
217 | 217 | </wctcontrols:SettingsCard> |
|
224 | 224 | <wctcontrols:SettingsExpander.Items> |
225 | 225 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=QuickAccess}"> |
226 | 226 | <ToggleSwitch |
227 | | - AutomationProperties.AutomationControlType="Custom" |
| 227 | + AutomationProperties.AutomationControlType="CheckBox" |
228 | 228 | AutomationProperties.Name="{helpers:ResourceString Name=QuickAccess}" |
229 | 229 | IsOn="{x:Bind ViewModel.ShowQuickAccessWidget, Mode=TwoWay}" /> |
230 | 230 | </wctcontrols:SettingsCard> |
231 | 231 |
|
232 | 232 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=Drives}"> |
233 | 233 | <ToggleSwitch |
234 | | - AutomationProperties.AutomationControlType="Custom" |
| 234 | + AutomationProperties.AutomationControlType="CheckBox" |
235 | 235 | AutomationProperties.Name="{helpers:ResourceString Name=Drives}" |
236 | 236 | IsOn="{x:Bind ViewModel.ShowDrivesWidget, Mode=TwoWay}" /> |
237 | 237 | </wctcontrols:SettingsCard> |
238 | 238 |
|
239 | 239 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=NetworkLocations}"> |
240 | 240 | <ToggleSwitch |
241 | | - AutomationProperties.AutomationControlType="Custom" |
| 241 | + AutomationProperties.AutomationControlType="CheckBox" |
242 | 242 | AutomationProperties.Name="{helpers:ResourceString Name=NetworkLocations}" |
243 | 243 | IsOn="{x:Bind ViewModel.ShowNetworkLocationsWidget, Mode=TwoWay}" /> |
244 | 244 | </wctcontrols:SettingsCard> |
245 | 245 |
|
246 | 246 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=FileTags}"> |
247 | 247 | <ToggleSwitch |
248 | | - AutomationProperties.AutomationControlType="Custom" |
| 248 | + AutomationProperties.AutomationControlType="CheckBox" |
249 | 249 | AutomationProperties.Name="{helpers:ResourceString Name=FileTags}" |
250 | 250 | IsOn="{x:Bind ViewModel.ShowFileTagsWidget, Mode=TwoWay}" /> |
251 | 251 | </wctcontrols:SettingsCard> |
252 | 252 |
|
253 | 253 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=RecentFiles}"> |
254 | 254 | <ToggleSwitch |
255 | | - AutomationProperties.AutomationControlType="Custom" |
| 255 | + AutomationProperties.AutomationControlType="CheckBox" |
256 | 256 | AutomationProperties.Name="{helpers:ResourceString Name=RecentFiles}" |
257 | 257 | IsOn="{x:Bind ViewModel.ShowRecentFilesWidget, Mode=TwoWay}" /> |
258 | 258 | </wctcontrols:SettingsCard> |
|
276 | 276 | <!-- Open in new tab --> |
277 | 277 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowOpenInNewTab}"> |
278 | 278 | <ToggleSwitch |
279 | | - AutomationProperties.AutomationControlType="Custom" |
| 279 | + AutomationProperties.AutomationControlType="CheckBox" |
280 | 280 | AutomationProperties.Name="{helpers:ResourceString Name=ShowOpenInNewTab}" |
281 | 281 | IsOn="{x:Bind ViewModel.ShowOpenInNewTab, Mode=TwoWay}" /> |
282 | 282 | </wctcontrols:SettingsCard> |
283 | 283 |
|
284 | 284 | <!-- Open in new window --> |
285 | 285 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowOpenInNewWindow}"> |
286 | 286 | <ToggleSwitch |
287 | | - AutomationProperties.AutomationControlType="Custom" |
| 287 | + AutomationProperties.AutomationControlType="CheckBox" |
288 | 288 | AutomationProperties.Name="{helpers:ResourceString Name=ShowOpenInNewWindow}" |
289 | 289 | IsOn="{x:Bind ViewModel.ShowOpenInNewWindow, Mode=TwoWay}" /> |
290 | 290 | </wctcontrols:SettingsCard> |
291 | 291 |
|
292 | 292 | <!-- Open in new pane --> |
293 | 293 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowOpenInNewPane}"> |
294 | 294 | <ToggleSwitch |
295 | | - AutomationProperties.AutomationControlType="Custom" |
| 295 | + AutomationProperties.AutomationControlType="CheckBox" |
296 | 296 | AutomationProperties.Name="{helpers:ResourceString Name=ShowOpenInNewPane}" |
297 | 297 | IsOn="{x:Bind ViewModel.ShowOpenInNewPane, Mode=TwoWay}" /> |
298 | 298 | </wctcontrols:SettingsCard> |
299 | 299 |
|
300 | 300 | <!-- Copy path --> |
301 | 301 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowCopyPath}"> |
302 | 302 | <ToggleSwitch |
303 | | - AutomationProperties.AutomationControlType="Custom" |
| 303 | + AutomationProperties.AutomationControlType="CheckBox" |
304 | 304 | AutomationProperties.Name="{helpers:ResourceString Name=ShowCopyPath}" |
305 | 305 | IsOn="{x:Bind ViewModel.ShowCopyPath, Mode=TwoWay}" /> |
306 | 306 | </wctcontrols:SettingsCard> |
307 | 307 |
|
308 | 308 | <!-- Create folder with selection --> |
309 | 309 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowCreateFolderWithSelection}"> |
310 | 310 | <ToggleSwitch |
311 | | - AutomationProperties.AutomationControlType="Custom" |
| 311 | + AutomationProperties.AutomationControlType="CheckBox" |
312 | 312 | AutomationProperties.Name="{helpers:ResourceString Name=ShowCreateFolderWithSelection}" |
313 | 313 | IsOn="{x:Bind ViewModel.ShowCreateFolderWithSelection, Mode=TwoWay}" /> |
314 | 314 | </wctcontrols:SettingsCard> |
315 | 315 |
|
316 | 316 | <!-- Create alternate data stream --> |
317 | 317 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowCreateAlternateDataStream}"> |
318 | 318 | <ToggleSwitch |
319 | | - AutomationProperties.AutomationControlType="Custom" |
| 319 | + AutomationProperties.AutomationControlType="CheckBox" |
320 | 320 | AutomationProperties.Name="{helpers:ResourceString Name=ShowCreateAlternateDataStream}" |
321 | 321 | IsOn="{x:Bind ViewModel.ShowCreateAlternateDataStream, Mode=TwoWay}" /> |
322 | 322 | </wctcontrols:SettingsCard> |
323 | 323 |
|
324 | 324 | <!-- Create shortcut --> |
325 | 325 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowCreateShortcut}"> |
326 | 326 | <ToggleSwitch |
327 | | - AutomationProperties.AutomationControlType="Custom" |
| 327 | + AutomationProperties.AutomationControlType="CheckBox" |
328 | 328 | AutomationProperties.Name="{helpers:ResourceString Name=ShowCreateShortcut}" |
329 | 329 | IsOn="{x:Bind ViewModel.ShowCreateShortcut, Mode=TwoWay}" /> |
330 | 330 | </wctcontrols:SettingsCard> |
331 | 331 |
|
332 | 332 | <!-- Compression options --> |
333 | 333 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowCompressionOptions}"> |
334 | 334 | <ToggleSwitch |
335 | | - AutomationProperties.AutomationControlType="Custom" |
| 335 | + AutomationProperties.AutomationControlType="CheckBox" |
336 | 336 | AutomationProperties.Name="{helpers:ResourceString Name=ShowCompressionOptions}" |
337 | 337 | IsOn="{x:Bind ViewModel.ShowCompressionOptions, Mode=TwoWay}" /> |
338 | 338 | </wctcontrols:SettingsCard> |
|
341 | 341 | <!-- TODO uncomment code when feature is marked as stable --> |
342 | 342 | <!--<wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowFlattenOptions}"> |
343 | 343 | <ToggleSwitch |
344 | | - AutomationProperties.AutomationControlType="Custom" AutomationProperties.Name="{helpers:ResourceString Name=ShowFlattenOptions}" |
| 344 | + AutomationProperties.AutomationControlType="CheckBox" AutomationProperties.Name="{helpers:ResourceString Name=ShowFlattenOptions}" |
345 | 345 | IsOn="{x:Bind ViewModel.ShowFlattenOptions, Mode=TwoWay}" |
346 | 346 | /> |
347 | 347 | </wctcontrols:SettingsCard>--> |
348 | 348 |
|
349 | 349 | <!-- Send To --> |
350 | 350 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowSendToMenu}"> |
351 | 351 | <ToggleSwitch |
352 | | - AutomationProperties.AutomationControlType="Custom" |
| 352 | + AutomationProperties.AutomationControlType="CheckBox" |
353 | 353 | AutomationProperties.Name="{helpers:ResourceString Name=ShowSendToMenu}" |
354 | 354 | IsOn="{x:Bind ViewModel.ShowSendToMenu, Mode=TwoWay}" /> |
355 | 355 | </wctcontrols:SettingsCard> |
356 | 356 |
|
357 | 357 | <!-- Edit tags --> |
358 | 358 | <wctcontrols:SettingsCard Header="{helpers:ResourceString Name=ShowEditTagsMenu}"> |
359 | 359 | <ToggleSwitch |
360 | | - AutomationProperties.AutomationControlType="Custom" |
| 360 | + AutomationProperties.AutomationControlType="CheckBox" |
361 | 361 | AutomationProperties.Name="{helpers:ResourceString Name=ShowEditTagsMenu}" |
362 | 362 | IsOn="{x:Bind ViewModel.ShowEditTagsMenu, Mode=TwoWay}" /> |
363 | 363 | </wctcontrols:SettingsCard> |
|
371 | 371 | <FontIcon Glyph="" /> |
372 | 372 | </wctcontrols:SettingsCard.HeaderIcon> |
373 | 373 | <ToggleSwitch |
374 | | - AutomationProperties.AutomationControlType="Custom" |
| 374 | + AutomationProperties.AutomationControlType="CheckBox" |
375 | 375 | AutomationProperties.Name="{helpers:ResourceString Name=SettingsContextMenuOverflow}" |
376 | 376 | IsOn="{x:Bind ViewModel.MoveShellExtensionsToSubMenu, Mode=TwoWay}" /> |
377 | 377 | </wctcontrols:SettingsCard> |
|
0 commit comments