I have added a tooltip into my code ToolTipService.ToolTip="Submit Changes" in Button control.
I also used a Radpane telerik control on my page.when i move mouse on button the tooltip is hiding behind Radpane control.
I want to display it on that telerik control. Please give me suggestion.
Thank you
If this still giving you issues try changing the z-order of the ToolTip in relation to the button so that it displays on top of the control. Hope this helps!
You must first set property to enable focus behaiviars.
set IsHitTestVisible="True"
Related
In my window I have 2 tabs. One with the main informarion and the other one with an editable grid. When I click the save button the entire window gets validated and the controls with validation problems are highlighted in red. But if i change the tab to the one with the grid and get back to the one with the validation problems the controls are not highlighted anymore. Even if i click the save button again, and the validation happens, the controls never get highlighted again.
Here are the screen captures
it's a bit late, but today I had the same situation and found the solution.
You have to add a AdornerDecorator inside the TabItem:
<TabItem Header="Foo">
<AdornerDecorator>
//more content
</AdornerDecorator>
</TabItem>
I have found it in a more general question:
TextBox with validation loses ErrorTemplate on tab change
Greetings
Is there a way to get focus on both controls in the WPF DatePicker? Setting the Focusable property on both makes neither work.
We would like users to be able to tab to both controls instead of focus only going to the textbox. Thanks!
I got some help on this. I needed to set the KeyboardNavigation.TabNavigation property to "Continue", then it worked. Thanks to Sam for the fix.
In WPF, how can I hide the minimize button (only the minimize, not also the maximize...) of a window.
The code in this forum almost work for me. The behavior of that code is that it's disabled the minimize button. But, how hide it?
http://forums.silverlight.net/forums/p/222067/532926.aspx
How about disabling the resize attribute?
ResizeMode="NoResize"
I think you would have to hide the default window title and draw your own titlebar.
e.g.: C# WPF Custom Title Bar Tutorial
and Moving a WPF Window with Custom Chrome
The new data validation in silverlight 3 has a red textbox that flies out to the right. This is a problem for me because I have have a textbox to the right that is getting covered by the popup.
How can I make this popup move somewhere else?
Retemplate the textbox. The tooltip is found in there. You can modify it using the placement property or margins to appear elsewhere.
I have a button with a transparent background on a wpf window.
Problem is, when I open up another window with a .showdialog the form becomes disabled as does the button, causing the button to go white (and stick out like a sore thumb); the same happens to the listview and textbox controls. Labels and group boxes aren't impacted in this way and remain looking fine.
How do I preserve the transparency color of the button, listview and textboxes when they are disabled?
Thanks, Rob
I'm not sure what your button template looks like, I would recommend posting your XAML. But check out the MSDN Docs on Button Templating