Advanced Forum Search Results
-
Thanks!!! That helps us tremendously
-
[quote user="vplusplus"]It will be a great help to the community if the toolkit team can share the custom build action (source and/or binary).[/quote]
I definitely agree on that.
-
Brauliod, I second this. I just spent 2 days writing a server side workaround (ever run WPF in a WindowsService, this ain't no fun..) to get image export working.
Another feature I would love to see is ClipToBounds. Although this can be emulated using Clip it is so much more convenienent and probably one of the things everybody uses in ...
-
Thanks for the workaround, I ll use that for now.
Here is the sample definition from my generic.xaml
<Style TargetType="src:TextBoxControl">
<Setter Property="BorderBrush" Value="#FF000000"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter ...
-
I think it would be helpful for everybody if this forum would be split into one for 2.0 bugs only and one for the rest. Also a known bug list by the dev team posted here as a sticky thread would be great.
-
Doing something like this:
public class TextBoxControl : System.Windows.Controls.WatermarkedTextBox
{
}
and placing a template in your generic.xaml file referencing the TextBoxControl does not apply that style, it always uses the default style as defined in TextBox or WatermarkedTextBox.
This works well with other controls like ...
-
I think the original poster is referring to a bug that silverlight does not process alt-gr key combinations that are needed to enter characters like @ or ~ on non english keyboards. As far as I understand that's a bug within the silverlight control, not the textbox implementation and hopefully number one on the list of things that will be ...
-
Hi,
I tested this with a Stackpanel and buttons as children, don't know if other elements are affected. Short term fix: Set the visibility of the child elements to that of the parent.
Martin
-
Another feature desperately needed is the x:Static data binding extension, to be able to do something like this:
Text="{Binding UserName,Source={x:Static a:IdentityManager.Current},Mode=OneWay}"
Where IdentityManager is a singleton referenced by Current, and the property is UserName.
-
Me too, thanks for the help.