Advanced Forum Search Results
-
Allow searching within a particular forum (perhaps this is already possible and I don't see how?)
Make the horizontal layout of the site adjust to screen size, or at least make the topic/thread column wider
Show more search results per page / make configurable
Consider using fewer underlines (on thread topics, in particular) and a hair more ...
-
Regarding generic.xaml - I have also found that if one has a simple project and authors the generic.xaml by hand, one can edit it to a degree with expression blend, but in my case, I have a solution split into multiple projects, some of which have their own generic.xaml files (each within .../themes).
When trying to edit one of these ...
-
make barriers to posting as low as possible.
-
Ok - at least this jives with what I've experienced... In case anyone else reads this thread, it doesn't seem possible to get the subclassed button (ActionButton, for example) to use the themed Button's style even when setting the DefaultStyleKey. Thanks all.
-
Greetings -
Is it possible to have a single Style/Template defined in a theme XAML file such as the following:
<Style TargetType="Button">
<Setter Property="Background" Value="{StaticResource NormalBrush}" ...
-
Hi Jesse -
Great article. I'm curious if it's possible to use the ImplicitStyleManager to allow derived controls to reference a single (parent) style?
For example, if I have ActionButton1 : Button and ActionButton2 : Button, is it possible to have them both reference a style with a TargetType of Button? When using generic.xaml, it was possible ...
-
Thanks so much for the quick replies. I ended up trying both and realizing several things:
a) When creating storyboards, apparently I only need to get from Normal to Collapsed; VSM will take care of the return path for me. In other words, I specified 0 for the height of the collapsed state, and specified no storyboard for the expanded ...
-
Hi All -
I'm wondering if it's possible to create visual states to animate an object between a height of "0" and "Auto". I'm trying to do this with the following xaml. Value="0" works fine to collapse the panel, but Value="Auto" or Value="Double.NaN" doesn't work. Is there a ...
-
I have a custom control that I'm trying to tweak visual states for in Blend. I have the following in my control class:
[TemplateVisualState(Name = "Hidden", GroupName = "CommonStates")]
[TemplateVisualState(Name = "Shown", GroupName = "CommonStates")]
as well as the xaml shown ...
-
[quote user="Yi-Lun Luo - MSFT"]Currently there's no way to tell the built-in DataGrid to use MyDataGridRow rather than the default DataGridRow... So if you can, avoid inheriting those classes.[/quote]
It seems rather limiting to restrict the DataGrid from using MyDataGridRow rather than the default DataGridRow. Is this ...