|
389 | 389 | </StackPanel> |
390 | 390 | <!--#endregion--> |
391 | 391 |
|
392 | | - <!--#region Executable path--> |
| 392 | + <!--#region Executable--> |
393 | 393 | <TextBlock |
394 | 394 | Grid.Row="13" |
395 | 395 | Grid.Column="0" |
396 | 396 | HorizontalAlignment="Right" |
397 | 397 | VerticalAlignment="Center" |
398 | | - Text="Executable path: " /> |
| 398 | + Text="Executable: " /> |
399 | 399 | <TextBox |
400 | 400 | Grid.Row="13" |
401 | 401 | Grid.Column="2" |
402 | 402 | VerticalAlignment="Center" |
403 | | - Text="{Binding SelectedGame.ExecutablePath, Mode=OneWay}" /> |
| 403 | + Text="{Binding SelectedGame.Executable, Mode=OneWay}" /> |
404 | 404 | <StackPanel |
405 | 405 | Grid.Row="13" |
406 | 406 | Grid.Column="4" |
|
409 | 409 | Orientation="Horizontal"> |
410 | 410 | <Button |
411 | 411 | Command="{Binding CopyToClipboardCommand}" |
412 | | - CommandParameter="{Binding SelectedGame.ExecutablePath}" |
| 412 | + CommandParameter="{Binding SelectedGame.Executable}" |
413 | 413 | ToolTip="Copy to clipboard"> |
414 | 414 | <Image |
415 | 415 | Width="20" |
|
420 | 420 | <Button |
421 | 421 | Margin="5,0,0,0" |
422 | 422 | Command="{Binding OpenPathCommand}" |
423 | | - CommandParameter="{Binding SelectedGame.ExecutablePath}" |
| 423 | + CommandParameter="{Binding SelectedGame.Executable}" |
424 | 424 | ToolTip="Open in explorer"> |
425 | 425 | <Image |
426 | 426 | Width="20" |
|
441 | 441 | </StackPanel> |
442 | 442 | <!--#endregion--> |
443 | 443 |
|
444 | | - <!--#region Executable name--> |
445 | | - <TextBlock |
446 | | - Grid.Row="15" |
447 | | - Grid.Column="0" |
448 | | - HorizontalAlignment="Right" |
449 | | - VerticalAlignment="Center" |
450 | | - Text="Executable: " /> |
451 | | - <TextBox |
452 | | - Grid.Row="15" |
453 | | - Grid.Column="2" |
454 | | - VerticalAlignment="Center" |
455 | | - Text="{Binding SelectedGame.Executable, Mode=OneWay}" /> |
456 | | - <StackPanel |
457 | | - Grid.Row="15" |
458 | | - Grid.Column="4" |
459 | | - HorizontalAlignment="Left" |
460 | | - VerticalAlignment="Center" |
461 | | - Orientation="Horizontal"> |
462 | | - <Button |
463 | | - Command="{Binding CopyToClipboardCommand}" |
464 | | - CommandParameter="{Binding SelectedGame.Executable}" |
465 | | - ToolTip="Copy to clipboard"> |
466 | | - <Image |
467 | | - Width="20" |
468 | | - Height="20" |
469 | | - Margin="2" |
470 | | - Source="/Resources/copy-white.png" /> |
471 | | - </Button> |
472 | | - </StackPanel> |
473 | | - <!--#endregion--> |
474 | | - |
475 | 444 | <!--#region Working directory--> |
476 | 445 | <TextBlock |
477 | | - Grid.Row="17" |
| 446 | + Grid.Row="15" |
478 | 447 | Grid.Column="0" |
479 | 448 | HorizontalAlignment="Right" |
480 | 449 | VerticalAlignment="Center" |
481 | 450 | Text="Working directory: " /> |
482 | 451 | <TextBox |
483 | | - Grid.Row="17" |
| 452 | + Grid.Row="15" |
484 | 453 | Grid.Column="2" |
485 | 454 | VerticalAlignment="Center" |
486 | 455 | Text="{Binding SelectedGame.WorkingDir, Mode=OneWay}" /> |
487 | 456 | <StackPanel |
488 | | - Grid.Row="17" |
| 457 | + Grid.Row="15" |
489 | 458 | Grid.Column="4" |
490 | 459 | HorizontalAlignment="Left" |
491 | 460 | VerticalAlignment="Center" |
|
516 | 485 |
|
517 | 486 | <!--#region Launch string--> |
518 | 487 | <TextBlock |
519 | | - Grid.Row="19" |
| 488 | + Grid.Row="17" |
520 | 489 | Grid.Column="0" |
521 | 490 | HorizontalAlignment="Right" |
522 | 491 | VerticalAlignment="Center" |
523 | 492 | Text="Launch string: " /> |
524 | 493 | <TextBox |
525 | | - Grid.Row="19" |
| 494 | + Grid.Row="17" |
526 | 495 | Grid.Column="2" |
527 | 496 | VerticalAlignment="Center" |
528 | 497 | Text="{Binding SelectedGame.LaunchString, Mode=OneWay}" /> |
529 | 498 | <StackPanel |
530 | | - Grid.Row="19" |
| 499 | + Grid.Row="17" |
531 | 500 | Grid.Column="4" |
532 | 501 | HorizontalAlignment="Left" |
533 | 502 | VerticalAlignment="Center" |
|
557 | 526 |
|
558 | 527 | <!--#region IsRunning--> |
559 | 528 | <TextBlock |
560 | | - Grid.Row="21" |
| 529 | + Grid.Row="19" |
561 | 530 | Grid.Column="0" |
562 | 531 | HorizontalAlignment="Right" |
563 | 532 | VerticalAlignment="Center" |
564 | 533 | Text="Is running: " /> |
565 | 534 |
|
566 | 535 | <Image |
567 | | - Grid.Row="21" |
| 536 | + Grid.Row="19" |
568 | 537 | Grid.Column="2" |
569 | 538 | Width="24" |
570 | 539 | Height="24" |
571 | 540 | HorizontalAlignment="Left" |
572 | 541 | Source="{Binding IsRunningLogo}" /> |
573 | 542 |
|
574 | 543 | <StackPanel |
575 | | - Grid.Row="21" |
| 544 | + Grid.Row="19" |
576 | 545 | Grid.Column="4" |
577 | 546 | HorizontalAlignment="Left" |
578 | 547 | VerticalAlignment="Center" |
|
0 commit comments