IT Nursery
What’s the “conceptual” difference between TextWrapping="Wrap" and TextWrapping="WrapWithOverflow" (e.g. for a TextBox)? In the MSDN page about the class TextBox there is nothing … Thank you. 3 Answers 3
  • June 4, 2022
  • 0 Comments
IT Nursery
In my application I need to perform a series of initialization steps, these take 7-8 seconds to complete during which my UI becomes unresponsive. To resolve this I perform...
  • June 3, 2022
  • 0 Comments
IT Nursery
I’m having a hard time binding a simple static string property to a TextBox. Here’s the class with the static property: public class VersionManager { private static string filterString;...
  • June 3, 2022
  • 0 Comments
IT Nursery
I’m trying to show a tooltip regardless of a buttons state, but this does not seem to do the trick: <Button Command="{Binding Path=CommandExecuteAction}" ToolTip="{Binding Path=Description}" ToolTipService.ShowOnDisabled="true" Style="{StaticResource toolbarButton}"> <Image...
  • June 3, 2022
  • 0 Comments
IT Nursery
I have a user control that I load into a MainWindow at runtime. I cannot get a handle on the containing window from the UserControl. I have tried this.Parent,...
  • June 2, 2022
  • 0 Comments
IT Nursery
Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 8 years ago....
  • June 1, 2022
  • 0 Comments
IT Nursery
I want to pass an enum value as command parameter in WPF, using something like this: <Button x:Name="uxSearchButton" Command="{Binding Path=SearchMembersCommand}" CommandParameter="SearchPageType.First" Content="Search"> </Button> SearchPageType is an enum and this...
  • June 1, 2022
  • 0 Comments
IT Nursery
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question...
  • June 1, 2022
  • 0 Comments