A multi-platform .NET UI framework. -!-!-!-!- VOTE FOR SUPPORT IN RIDER: https://youtrack.jetbrains.com/issue/RIDER-39247 -!-!-!-!-
grokys on master
Correctly read EDID on X11. Merge branch 'master' into fixe… Merge branch 'master' into fixe… and 1 more (compare)
grokys on edid
grokys on edid
Close tooltip on null Tip value Add Should_Close_On_Null_Tip te… Fixed indexer binding for null … and 11 more (compare)
grokys on master
Fixed indexer binding for null … Merge branch 'master' into inde… Merge pull request #5310 from j… (compare)
DrawingImage
output to iconpacks.
DwmEnableBlurBehindWindow
or DwmExtendFrameIntoClientArea
to get blurred transparency on Windows". Problem is, that's straight-up incorrect - those APIs only produce blur on Windows Vista and 7. On Windows 8 and newer, they just produce an opaque solid colour, and in all cases, the affected window is, in one way, or another, coloured to match the user's Window frames. The only time you'd get blur out of those APIs on Windows 8 or newer is with that Aeroglass program installed ( http://glass8.eu/ )...surely that's not going to be required, right?
Text="{loc:Loc MyResourceName}"
I have dynamical TabControl:
<TabControl Items="{Binding TabsList}" SelectedItem="{Binding SelectedTab}" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch">
I have a synchronous command in dynamicaly fullfilled ContextMenu in TreeView in one Tab:
Calibrate = ReactiveCommand.Create
( () =>
{
CalibrateTabOpen((SelectedNode as TankItem).stnk.tnk);
// Dispatcher.UIThread.Post((Action)(() => CalibrateTabOpen((SelectedNode as TankItem).stnk.tnk)));
}
);
This command raise an event:
public Unit CalibrateOpen(ecb.t_tnk tnk)
{
UserTabItem userTab = new UserTabItem() { TabImage = "Assets/clb.png", TabTitle = "Перечень тарировок", TabType = UserTabItem.UserTabType.CALIBRATES };
CalibrateViewModel calibrateViewModel = new CalibrateViewModel(userTab,tnk,httpContext);
TabsList.Add(calibrateViewModel);
SelectedTab = calibrateViewModel;
return Unit.Default;
}
After clicking menu I've got the new Tab, but also I've got an empty ContextMenu (very small rectangle) above my new Tab in the same position where it was before. This empty menu disappeares by clicking in any area. How can I avoid this strange behavior?