Sinatr

Results 8 comments of Sinatr

@wieslawsoltes, any feedback on why closing this as "not planned"? I am using "Output" window to debug and I am not prepared to go through such useless spam when switching...

> Is there any way to localize the license agreement interface? I have been using [this utility](https://github.com/pypt/dmg-add-license), but now that `hdiutil un/flatten` is no longer supported, I'm unable to use...

You can clone, compile and reference dll directly to try most recent version. The nuget-version [from STA](https://www.nuget.org/packages/WebSocketSharp/1.0.3-rc11) is from 2016. There are other nuget-versions from the same repository (not sure,...

@stevemonaco, thanks for digging a new solution for me. In WPF I often need to use dispatcher-invoke-trick, so I am ok with invoking `WindowState`: ```c# public override void OnFrameworkInitializationCompleted() {...

@TomEdwardsEnscape, I can report bugs, but I am unable to test PRs, sorry.

Possible workaround is to [send click event](https://github.com/AvaloniaUI/Avalonia/discussions/7383) to first column: ```c# var firstColumn = Children(treeDataGrid).First(); firstColumn.RaiseEvent(new RoutedEventArgs { RoutedEvent = Button.ClickEvent }); ``` Children method ```c# IEnumerable Children(Visual parent) {...

> Just create a class that inherits from `NestedViewModel`: > > public class MyNestedViewModel : RootViewModel.NestedViewModel {} I am getting warning and it bindings to properties aren't working at all:...

@AndrewKeepCoding, I moved nested class `BluetoothManager.Device` out and renamed it to `BluetoothDevice`. That's not too bad. But by doing so I've lost some [nice feature](https://dotnetfiddle.net/cSOSWG) of nested class being able...