Advanced Forum Search Results
-
But problem is, that I cant edit template of this component.
Actions:
Place this custom control on test Page.xaml, and choose in Blend "Edit Template" on this
-
any ideas?
-
Blend throws exeption after I select Edit empty template on my control placed somewhere on test page. Not actually the message box, but it draws it within control's border.
Here is my generic xaml, it's big, so I show only the meaning part
<ResourceDictionary
xmlns="http://schemas.microsoft.com/client/2007" ...
-
any ideas?
-
Hi,
I have problem with editing my custom control in blend. I've created it with best practices, it contains TamplateParts contract, and everything works well accept editing it in Blend. It throws me: E_Fail....com.. exception. Has anybody faced with this? maybe it's just a beta2 bug...
-
I'm writing simple custom control with simple template, and generic xaml, and it doesn't work. I've done everything like in mix08 video (with ImageControl), also i've run already downloaded control from codeproject, result was like runtime doesn't see generic.xaml file.
I added style manually and it works. (through ...
-
good article, but not exactly what I've expected. myGrid is not child for myControl, it's just element with greater z-order.
-
any ideas?
-
How I can handle mouse event on my container, and this event will be passed to elements with less z-order?
Example
<Grid>
<SomeControl Name = "myControl" OnMouseEnter>
<Grid Name="myGrid" OnMouseEnter.../>
</Grid>
I need to handle both events first for myGrid and then for ...