[PR #225] [MERGED] Add Avalonia UI #989

Closed
opened 2026-01-29 16:24:41 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/SabreTools/MPF/pull/225
Author: @mnadareski
Created: 9/9/2020
Status: Merged
Merged: 9/10/2020
Merged by: @mnadareski

Base: masterHead: crossplat


📝 Commits (6)

  • 46530a9 Add Avalonia, remove NET462
  • 5e77b43 Add icon, fix version, copyright, appveyor
  • f61b84d Okay, fine
  • 470e641 Protection scan output to Avalonia
  • 4735bef Merge branch 'master' into crossplat
  • f74dc01 Fix percentage in Avalonia

📊 Changes

32 files changed (+2608 additions, -34 deletions)

View changed files

DICUI.Avalonia/App.axaml (+8 -0)
DICUI.Avalonia/App.axaml.cs (+24 -0)
DICUI.Avalonia/ComboBoxItems/CategoryComboBoxItem.cs (+29 -0)
DICUI.Avalonia/ComboBoxItems/KnownSystemComboBoxItem.cs (+35 -0)
DICUI.Avalonia/ComboBoxItems/LanguageComboBoxItem.cs (+29 -0)
DICUI.Avalonia/ComboBoxItems/MediaTypeComboBoxItem.cs (+20 -0)
DICUI.Avalonia/ComboBoxItems/RegionComboBoxItem.cs (+30 -0)
DICUI.Avalonia/Constants.cs (+55 -0)
DICUI.Avalonia/DICUI.Avalonia.csproj (+36 -0)
DICUI.Avalonia/DiscInformationWindow.axaml (+120 -0)
DICUI.Avalonia/DiscInformationWindow.axaml.cs (+264 -0)
DICUI.Avalonia/EnumDescriptionConverter.cs (+32 -0)
DICUI.Avalonia/Icon.ico (+0 -0)
DICUI.Avalonia/LogWindow.axaml (+40 -0)
DICUI.Avalonia/LogWindow.axaml.cs (+82 -0)
DICUI.Avalonia/MainWindow.axaml (+109 -0)
DICUI.Avalonia/MainWindow.axaml.cs (+843 -0)
DICUI.Avalonia/MessageBox.axaml (+17 -0)
DICUI.Avalonia/MessageBox.axaml.cs (+83 -0)
DICUI.Avalonia/OptionsWindow.axaml (+162 -0)

...and 12 more files

📄 Description

This PR introduces a (theoretically) cross-platform UI for DICUI. It is not as full-featured as the regular UI currently, but it does all of the same general stuff, including running dumps and changing settings. The "broken" parts all revolve around the log window.

Also entirely forgot that this also strips out .NET 4.6.2 (since .NET 4.7.2 is fully mono compatible) and comments out a lot of the problematic .NET Core 3.1 code.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/SabreTools/MPF/pull/225 **Author:** [@mnadareski](https://github.com/mnadareski) **Created:** 9/9/2020 **Status:** ✅ Merged **Merged:** 9/10/2020 **Merged by:** [@mnadareski](https://github.com/mnadareski) **Base:** `master` ← **Head:** `crossplat` --- ### 📝 Commits (6) - [`46530a9`](https://github.com/SabreTools/MPF/commit/46530a9fca6949e69f7ec238d12be379ab580367) Add Avalonia, remove NET462 - [`5e77b43`](https://github.com/SabreTools/MPF/commit/5e77b43be1cce4fd64cb531ee68ceb4435904da3) Add icon, fix version, copyright, appveyor - [`f61b84d`](https://github.com/SabreTools/MPF/commit/f61b84d058be9a27c5dfc2749a61d7ba53e4ee44) Okay, fine - [`470e641`](https://github.com/SabreTools/MPF/commit/470e641a8c85e554605c97575a401c8265de03de) Protection scan output to Avalonia - [`4735bef`](https://github.com/SabreTools/MPF/commit/4735bef7b40045d55cd7de7f4bfe6de01caa3c50) Merge branch 'master' into crossplat - [`f74dc01`](https://github.com/SabreTools/MPF/commit/f74dc01657200b912e8d87c7cb440fbd4f67b3a7) Fix percentage in Avalonia ### 📊 Changes **32 files changed** (+2608 additions, -34 deletions) <details> <summary>View changed files</summary> ➕ `DICUI.Avalonia/App.axaml` (+8 -0) ➕ `DICUI.Avalonia/App.axaml.cs` (+24 -0) ➕ `DICUI.Avalonia/ComboBoxItems/CategoryComboBoxItem.cs` (+29 -0) ➕ `DICUI.Avalonia/ComboBoxItems/KnownSystemComboBoxItem.cs` (+35 -0) ➕ `DICUI.Avalonia/ComboBoxItems/LanguageComboBoxItem.cs` (+29 -0) ➕ `DICUI.Avalonia/ComboBoxItems/MediaTypeComboBoxItem.cs` (+20 -0) ➕ `DICUI.Avalonia/ComboBoxItems/RegionComboBoxItem.cs` (+30 -0) ➕ `DICUI.Avalonia/Constants.cs` (+55 -0) ➕ `DICUI.Avalonia/DICUI.Avalonia.csproj` (+36 -0) ➕ `DICUI.Avalonia/DiscInformationWindow.axaml` (+120 -0) ➕ `DICUI.Avalonia/DiscInformationWindow.axaml.cs` (+264 -0) ➕ `DICUI.Avalonia/EnumDescriptionConverter.cs` (+32 -0) ➕ `DICUI.Avalonia/Icon.ico` (+0 -0) ➕ `DICUI.Avalonia/LogWindow.axaml` (+40 -0) ➕ `DICUI.Avalonia/LogWindow.axaml.cs` (+82 -0) ➕ `DICUI.Avalonia/MainWindow.axaml` (+109 -0) ➕ `DICUI.Avalonia/MainWindow.axaml.cs` (+843 -0) ➕ `DICUI.Avalonia/MessageBox.axaml` (+17 -0) ➕ `DICUI.Avalonia/MessageBox.axaml.cs` (+83 -0) ➕ `DICUI.Avalonia/OptionsWindow.axaml` (+162 -0) _...and 12 more files_ </details> ### 📄 Description This PR introduces a (theoretically) cross-platform UI for DICUI. It is not as full-featured as the regular UI currently, but it does all of the same general stuff, including running dumps and changing settings. The "broken" parts all revolve around the log window. Also entirely forgot that this also strips out .NET 4.6.2 (since .NET 4.7.2 is fully `mono` compatible) and comments out a lot of the problematic .NET Core 3.1 code. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 16:24:41 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: SabreTools/MPF#989