我是wpf的新手,并寻找好的教程来帮助更好地理解触发器,但我没有太多运气。所以我想我会在这里寻求帮助。这是我想要做的,我有一个具有堆栈面板的ScrollViewer,在后面的代码中我浏览媒体文件夹并使用foreach循环将MediaElements添加到stackpanel,我想要做的是当用户悬停在一个其中,我希望它在它下面发光,我被告知触发器是要走的路,所以这就是我到目前为止所拥有的
的foreach
MediaElement newVideoPreview = new MediaElement();
newVideoPreview.Width = 125;
newVideoPreview.Stretch = Stretch.Uniform;
newVideoPreview.Margin = new Thickness(5, 5, 5, 5);
newVideoPreview.Volume = 0;
Trigger trig = new Trigger();
trig.Property = IsMouseOverProperty;
trig.Value = true;
Style style = new Style();
style.TargetType = newVideoPreview.GetType();
style.Triggers.Add(trig);
Setter set = new Setter();
OuterGlowBitmapEffect glow = new OuterGlowBitmapEffect();
glow.GlowColor = Color.FromRgb(0, 0, 205);
glow.GlowSize = 10;
set.Value = glow; // <- Crash house
set.Property = EffectProperty;
style.Setters.Add(set);
newVideoPreview.Style = style;
正如你所看到的,当我尝试设置setter.value时,我得到一个无效的参数异常,即时寻找有关如何解决这个问题的建议或者做得更好,或者更好的教程...感谢您的帮助
p.s我正在使用VS2010 beta 2
更新我也尝试了这个剂量......
<UserControl x:Class="WiiDSUKiosk.WiiFriendlyScrollViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.Resources>
<Style TargetType="{x:Type UIElement}">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="BitmapEffect">
<Setter.Value>
<OuterGlowBitmapEffect GlowColor="Navy" GlowSize="10"/>
</Setter.Value>
</Setter>
</Trigger>
</Style.Triggers>
</Style>
</Grid.Resources>
<ScrollViewer Name="wiiFriendlyScrollViewer" ScrollViewer.HorizontalScrollBarVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Hidden"
MouseMove="wiiFriendlyScrollViewer_MouseMove" >
<StackPanel Name="stackPanelContent" ScrollViewer.HorizontalScrollBarVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Hidden">
</StackPanel>
</ScrollViewer>
</Grid>
答案 0 :(得分:3)
我也花了几个小时来讨论这个问题,只是为了发现在2010年的比赛中,bitmapeffects已经过时了。基于这篇文章回答这个问题:msdn forums
答案 1 :(得分:2)
这在xaml中要容易得多,试图在代码中操作这些东西是一件令人头疼的事。
there is some code in this unrelated article关于项目控制生成器,它们会在列表框中选择项目时添加光晕。 (稍微超过一半)
here is the ms example它使用触发器来发光任何有焦点的东西。 (这更容易理解)