I was fooling around with margins and padding and found that a negative value was acceptable and gives a nice effect in appropriate circumstances. For instance, if you have a border with a filled object and you want the filled object color to overrun the border. Anyone have any others?
|
|
Debugging WPF binding. Adding tracing for binded properties:
You will get in the output window much details about the binding:
//EDIT More Info here. Ariel |
||||
|
|
|
A new feature of WPF delivered with 3.5 SP1 is the ability to format your string while binding. It eliminates the useage of IValueConverter for such common scenarios. Here are some examples to get you going which I copied from this blog post
|
||||
|
|
|
Include curly braces in the content of a control.
|
||||
|
|
|
|
||||
|
|
|
Set a debug style that provides visual cues:
|
|||||
|
|
IsMouseOver and IsMouseDirectlyOver are different events. IsMouseOver responds to all mouse movement within a control and it's children. IsMouseDirectlyOver responds only if the cursor is over the control itself. For instance, if you have a label contained within a border, the IsMouseDirectlyOver event for the Border only fires if the cursor is over the Border itself but NOT over the contained Label. |
||||
|
|
Padding and Margin are entered using comma-delimited syntax and are of type Thickness. They can be entered as:
|
||||
|
|
|
Provide a unique row or column for a GridSplitter to ensure that it is not hidden by other controls and behaves as expected. |
||||
|
|
|
Insert double quotes in content:
|
||||
|
|
|
The property is BorderThickness. No matter how many times you type BorderWidth, it's not going to work! |
||||
|
|
|
Calculate the available real estate as a percentage:
EDIT: This works but is not indicative of how the * parameter functions. This:
provides the same functionality. If you want something other than equal height rows you can use:
which will divide the available height by 10 and maintain the relative height of each row. Alternatively, the values could be 0.1, 0.2, 0.3, and 0.4 or any proportional value. |
||||
|
|
|
Decide dimensions of one control based on another at runtime.
This can be done with Height/MaxHeight etc. too. |
||||
|
|
|
A Grid with the Background left as default or set with a Transparent brush will not fire the IsMouseOver event unless the cursor is over a containing control. To ensure the event is fired over the Grid itself, simulate Transparency by setting the Background to the container Background color. |
|||||
|
|
A control with the background set to Transparent will NOT fire the IsMouseOver or IsMouseDirectlyOver events. For example, if a Border Background is set to Transparent but the BorderBrush=Blue and the BorderWidth is <> 0, the MouseOver events will fire while over the Border itself but not while over the interior of the control. |
||||
|
|
|
Set a property in Code Behind to a DynamicResource: Border_Toolbar.SetResourceReference(BackgroundProperty, "Brush_ToolbarBackground") |
||||
|
|