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
Where can I find a control which is like the C# Timer Control in WPF? 4 Answers 4
I am just coming up to speed on WPF and would like to create a reusable WPF control. When I look at the options for creating projects in Visual...
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...
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;...
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...
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,...
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....
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...
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...