Flithor

Results 39 comments of Flithor

BLACK MAGIC workaround: Item VM: ``` public class ItemVM(RawItem item, Action isCheckedChanged) : ViewModelBase { private bool isChecked; private bool isExpanded = true; public bool IsChecked { get => isChecked;...

Things I made and it works well: ``` [JsonConverter(typeof(OptionalJsonConverter))] //make json support convertion Optional [TypeConverter(typeof(OptionalTypeConverter))] //make Optional property been seem as a property member public interface IOptional { object? Value...

I was also stuck at 90%. **But can use it by open http://localhost:8080 in browser.** more info: The log file is locked by progress when running(Stirling-PDF.exe, jcef_helper.exe) logs files: [logs.zip](https://github.com/user-attachments/files/18278746/logs.zip)

I need to add a button to the right of the Header but it seems I cannot.

@rabbitism I think it can use TextBlock with inline: (FallbackValue only for show something as sample) ``` ```

here is some bug about this: ``` description: "title\r\n```\r\nmycode```\r\n" ``` the text ` ```` will display into code block ![image](https://github.com/user-attachments/assets/680b18d9-dd1c-4d33-bd86-899dc8ae975e) But this is fine: ``` description: "title\r\n```\r\nmycode\r\n```\r\n" ``` ![image](https://github.com/user-attachments/assets/bb046dbc-44ad-4ed7-b23e-1747d599ad1e) And...

AnyCPU too. It happened suddenly, I was work on AnyCPU a day ago, and today suddenly the designer only tried to read the dll under x64. Edit: Weird, it disappear..

@jxnkwlp here I fixed for: https://github.com/jxnkwlp/NginxConfigParser/blob/56a7e6c292818d27000095a77a123c911573da18/NginxConfigParser/Parser.cs#L49 ``` private void ParseLine(string text, int lineIndex) { if (text.Length == 0) { return; } // comment row if (text[0] == '#') { var...

@jxnkwlp No, I don't have time to write a full test case.