D2
D2
I am trying to upgrade Molstar from v4.6, running on Vue + Vite v6.3.5 dev build, I encounted this error: ``` Uncaught TypeError: Cannot read properties of undefined (reading 'Empty')...
Hi, thanks for creating a powerful library! I want to mask some residues of the structure sequence, basically just replace the residues with `X` and the `label_comp_id` with `UNK`. What...
As Windows 11 introduce **Snap Layout** when we hover on Restore/Maximize caption button, I want to have this feature on my custom title bar using `WindowChrome`. The current `SystemCommands` class...
### Describe the bug I have a button to open a modal window with `OverlappedPresenter` using `AppWindow`, the mouse pointer of the button is still captured, and its events (`PointerEntered`...
### Describe the bug The default extension is always the first item in `FileTypeChoices`. Also, `FileTypeChoices` is always sorted, ignoring the original order! ```cs var saveDialog = new FileSavePicker(AppWindow.Id) {...
### Describe the bug The `FileSavePicker` creates an empty file without code. ```cs var saveDialog = new FileSavePicker(AppWindow.Id) { DefaultFileExtension = ".xml", }; saveDialog.FileTypeChoices.TryAdd("TXT", [".txt"]); saveDialog.FileTypeChoices.TryAdd("JSON", [".json"]); saveDialog.FileTypeChoices.TryAdd("XML", [".xml"]); var...