Advanced Forum Search Results
-
Hi,
Set the IsHitTestVisible property to false. This will disable your checkbox.
Michel
If this answer is helpful, please mark this post as answer.
-
Hi,
The VerticalScrollBarVisibility property on a TextBox cannot be styled since it isn’t a DependencyProperty.
Without styling:<TextBox VerticalScrollBarVisibility="Auto" />
Michel
If this answer is helpful, please mark this post as answer.
-
Hi,
Put the image inside a popup. Make it visible in the button's onmousemove ebent handler and make the popup capturing the mouse input by using the captureMouse method. In this case you can check inside the popup's onmousemove event handler if the mouse is outside your popup and then hide your popup.
Michel
If this ...
-
Hi again,
Or your popup can capture the mouse input by using the captureMouse method. In this case you can check inside the popup's onmousemove event handler if the mouse is outside your popup and then hide your popup.
Michel
If this answer is helpful, please mark this post as answer.
-
Hi,
Remove the button's MouseLeave event handler.
Close the popup when the mouse enters the canvas.
Michel
If this answer is helpful, please mark this post as answer.
-
I am using the BusyIndicator from the november toolkit.
I want to show a custom progress bar. How do I remove the container having a gray background?
Thanks in advance.
-
Here is a simple example. It works for me.public class Department
{
public string Name { get; set; }
public override string ToString()
{
// Caption of the group header
return ResourceManager.ResourceManager.GetString(...);
}
}
public class Employee
{
public string Name { get; set; }
public Department ...
-
Yes, you would have to change your class.
I don't think that your localization would be static. The ToString() method can return your text translation dynamically. Something like this:
public override string ToString()
{
return ResourceManager.ResourceManager.GetString("Name");
}
Does this help you?
-
It is possible to group on a property that is a class reference instead of a simple type. Just override the ToString() method and it is this value that will be displayed in the group header. Hope this helps.
Michel
-
I received useful information:
http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/5546f5c2-55b4-4110-9c5e-4a234660e8b1/?prof=required