Browse by Tags
All Tags »
WPF (
RSS)
As A software infrastructure provider deploying our Products to the other Dev teams was not as easy as we wanted it to be. This is all about to change because of the generous gift that was given to the world which is Nuget . I am not going to introduce Nuget here, you can find a lot of documentation, a good place to start is Nuget Doc site and Nuget codeplex site . the goal of this post is tell you about the good things that Nuget did for us. Nuget in my enterprise We divided all of the assemblies...
This week we had a very strange case that 2 of our ComboBox controls did not open their dropdown although you can select the items with either the mouse wheel or the keyboard arrow keys. We thought at first that there is something wrong with our Styles, especially because we got a new version from our UX team this week. First we removed the ComboBox related styles and to see if the style is the actual cause of this problem, it turns out the there is nothing wrong with the style and the “naked” ComboBox...
Today I witnessed a weird thing with WPF Itay, a very good friend of mine noticed that when you have multiple child windows in a WPF application, and you close the last one, the application suddenly disappears, This only happens if you have more than one child window and you set the MainWindow as the owner of the other windows This is a very unexpected behavior. Let me demonstrate The following code is in the MainWindow.xaml.cs private void ShowChildWindows() { ChildWindow window = new...