Advanced Forum Search Results
-
I have the same thing.
Issue 1 is the reason why my controls doesnt have disabled states.
-
Hiya,
I'm having problems with multiple child windows.
one works fine, but when another childwindow is opened while the first 1 is open, and then close the 2nd childwindow, the visualroot would be enabled.
the 2nd childwindow wouldnt disable the first childwindow as well.
say: rootvisual, childwindow1, ...
-
-- Bump
right now our workaround is to have an #if !DEBUG #endif statement. so it would still show up in blend. :)
-
Hiya Guys,
I'm developing custom controls and throwing exceptions on those custom controls screws up Blend. well it doesnt show the UI. and editing in xaml is kinda hard. So was wondering, is there a statement or a compilation symbol for blend? It would be really helpful.
tia,
Redgie
-
Hiya MurDoGG, I tried the /ResetSettings but it still didnt work. hehe. right now our temporary solution is to have a post-build event. but i hope there's a fix for this.
-
Hi,
My team and i are also having the same problem. I think it happened after installing Blend 3 RC.
-
We also have the same problem. And the hard part about it is our Button is styled with Cursor=Hand. so reverting the this.Cursor = Cursors.Arrow wouldnt really do if it's still hovering over the button (since it should be hand).
-
I think they are using a separate assembly for the controls, in that case you can use <Image x:Name="imageElement" Stretch="Uniform"
Source="/ReferencedSlLibrary;component/_DTH8643.jpg" /> or read the entire article here
-
Nvm, my control is also inside a popup which was causing the error.
-
Hi,
We built a Dialog control which is just a popup that contains a grid. Ever since we migrated to rc0, we had a lot of problems with popups inside the dialog control (which is also a popup). TransformToVisual on any control inside the dialog somehow throws a Castrophic Failure.This includes:
ComboBox
DatePicker
which also uses popups.
Is ...