Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
ghost1372 closed a pull request on ghost1372/DevWinUI
Fixed DateTimePicker, and made names more intuitive
## Breaking Renamed SelectedDate to SelectedDateTime and SelectedDateTime to SelectedDateTimeString. Calling a string a datetime would be very confusing. ## Non-Breaking * Made sure the DateTim...ghost1372 created a comment on a pull request on ghost1372/DevWinUI
LGTM🚀 Thank you for addressing the feedback. I would be happy if you could work on MicaSystemBackdrop's issue. I'm currently focused on controls and trying to bridge the gap between WPF and WinU...
ghost1372 created a comment on a pull request on ghost1372/DevWinUI
Hi @AlexanderBlackman Tnx for your Great PR. I saw some things that needed to be fixed. First, please revert the Git Ignore items to their previous state. This action was probably unintentional....
ghost1372 pushed 1 commit to main ghost1372/DevWinUI
- Add ShowStepIndex Option for StepBar #23 8036cae
ghost1372 created a comment on an issue on ghost1372/DevWinUI
I'm not sure about _show content on both sides of each circle_ because it might disrupt the Orientation functionality. also it might make the controls a little bit more complicated and I'm trying ...
ghost1372 created a comment on an issue on dotMorten/WinUIEx
@RyanLua if you are using Microsoft TitleBar control, this issue fixed in v1.7-exp2 ([related issue in winui repo](https://github.com/microsoft/microsoft-ui-xaml/issues/9788)) if you are using @do...
ghost1372 created a comment on an issue on microsoft/microsoft-ui-xaml
@M-Muluc Disable Trim for Release Mode: (i tested on Release Mode and it is working fine @marcelwgn also Optimizing assemblie error will be fixed by disabling Trim) `<PublishTrimmed Condition="'$(...
ghost1372 created a comment on an issue on ghost1372/DevWinUI
@tinodin yes this is probably a windows bug or wasdk bug, i tried many times and i did not get a crash. so i am closing this issue.
ghost1372 closed an issue on ghost1372/DevWinUI
Unpackaged app crashes with theme = default when changing the system theme from windows settings
After creating an unpackaged app and setting the theme to default in its settings the app will crash when changing the windows theme to light or dark mode. ![Screenshot 2025-01-15 143601](https...ghost1372 created a comment on an issue on ghost1372/DevWinUI
@tinodin Thank you for sample project, but i did not see any issues or crash and app is working fine, if you want i can send you another gif for prof. so this is related to your OS (mine is Window...
ghost1372 created a comment on an issue on ghost1372/DevWinUI
I don't see any such problem. Upload a repro if possible. (wait a few second to load gif image👇👇👇) ![bb](https://github.com/user-attachments/assets/b54ab9b3-1b08-4016-a86d-35191e2fb0fc)
ghost1372 created a comment on an issue on ghost1372/DevWinUI
Hi @tinodin Thank you for your report and suggestion. This happens because of the JsonNavigationService. I fixed it by introducing a new overload. Normally, the button visibility will be do...
ghost1372 closed an issue on ghost1372/DevWinUI
How to completely hide the back button from the title bar?
How can I completely hide the back button from the title bar? Adding: IsBackButtonVisible="False" to the titlebar used to work but doesn't anymore, it still appears as soon as you go to another page.ghost1372 created a comment on an issue on microsoft/microsoft-ui-xaml
another solution: ``` private const int GWL_STYLE = -16; private const long WS_BORDER = 0x00800000; private const long WS_CAPTION = 0x00C00000; private const long WS_THICKFRAME = 0x00040000; // Im...
ghost1372 pushed 1 commit to patch-1 ghost1372/WinUIEx
- Update TransparentTintBackdrop.cs Fix #207 fb55140