FusedQyou
Would this AsyncQueue have issues with multiple producers and a single consumer?
Judging from this pull request channels support .NET Standard 2.1, which in turn Unity supports. Any particular reason why you can't just implement Channels?
17 replies
✅ Change dataGridRow:selected row
So there's likely two things that have to be changed
- The selector in your case has to have
/template/ Rectangle#BackgroundRectangle
appended to point to the correct control, as specified in my previous message. You have to set a rectangle in the grid row that explicitly specifies the background color.
- Instead of setting the background
, it appears you have to set the fill
. The reason for this change is because you are not setting the color of a rectangle, and not a border which would have a background instead.8 replies
✅ Change dataGridRow:selected row
You see styles like this one: https://github.com/AvaloniaUI/Avalonia/blob/117450dbbe625cab8dad96bf7a336a122bcaf339/src/Avalonia.Controls.DataGrid/Themes/Fluent.xaml#L369
8 replies
✅ Change dataGridRow:selected row
After searching a bit I found it here: https://github.com/AvaloniaUI/Avalonia/blob/117450dbbe625cab8dad96bf7a336a122bcaf339/src/Avalonia.Controls.DataGrid/Themes/Fluent.xaml#L317
8 replies
✅ Change dataGridRow:selected row
One thing with styling is that you might have to point to an inner control inside of the control instead of being able to pass the style property directly. Your foreground works, but the background is not able to be modified directly because the properly is not delegated to the actual control that sets the background.
8 replies
EF Concurrency
Again, unrelated and perhaps not even as applicable here, but I notice you pass the provider into your jobs, and instead you might want to look into instantiating a job class for each job, and pass the referenced through the constructor if you want to support a varying number of parameters.
6 replies