我想要实现的是从继承自Button的RegistrationButton.cls类访问公共属性(所以我可以在textblocks中设置绑定)。
所以我最终可以将RegistrationButton的标题传递到下一页,所以我实际上知道按下了什么按钮并从那里进一步。
问题:
以下点击事件发件人的类型为按钮(因为它在我的xaml代码中声明为按钮)。所以这就是问题,当我尝试将发送者强制转换为RegistrationButton时,发送者总是为NULL。当我使用Button作为Button时,我无法访问RegistrationButton类的任何内容。
所有按钮都保存在由RegistrationButton对象组成的ObversableCollection列表中。
private void RegistrationButton_Click(object sender, RoutedEventArgs e)
{
RegistrationButton b = sender as RegistrationButton;
String buttonTitle = b.Title;
}
长期以来一直在努力解决这个问题,我不知道究竟要改变什么。 xaml数据模板(如果是这样,究竟如何?)或后面的代码?
XAML:
<ListBox x:Name="lbRegistration" ItemsSource="{Binding RegBtns, ElementName=Window}" Background="{x:Null}"
BorderBrush="{x:Null}" Grid.Column="1"
ScrollViewer.HorizontalScrollBarVisibility="Hidden" ScrollViewer.VerticalScrollBarVisibility="Disabled" Height="75">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Button x:Name="RegistrationButton" HorizontalAlignment="Center" Height="71" Width="148"
Style="{DynamicResource ButtonStyleRegistration}"
Margin="10,0,5,0"
Click="RegistrationButton_Click" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
按钮的样式:
<Style x:Key="ButtonStyleRegistration" TargetType="{x:Type Button}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid x:Name="registrationButton">
<Rectangle Fill="#FF89959A" Height="Auto" RadiusY="15" RadiusX="15" Stroke="White" Width="Auto"/>
<TextBlock x:Name="tbOorzaak" TextWrapping="Wrap"
Text="{Binding RegistrationCount, StringFormat=Cause: \{0\}}"
HorizontalAlignment="Center" Margin="7.5,7.5,0,0" Height="Auto"
VerticalAlignment="Top" FontWeight="Bold" >
</TextBlock>
<TextBlock x:Name="tbDuurStilstand" TextWrapping="Wrap"
Text="{Binding RegistrationCount, StringFormat= \{0\}}"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="7.5,5,0,0" Height="24.8266666666667"/>
<TextBlock x:Name="tbBeginStilstand"
Text="{Binding RegistrationCount, StringFormat= \{0\}}"
TextWrapping="Wrap" Margin="7.5,0,0,7.5"
VerticalAlignment="Bottom" d:LayoutOverrides="Width"
HorizontalAlignment="Center" Height="Auto"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsFocused" Value="True"/>
<Trigger Property="IsDefaulted" Value="True"/>
<Trigger Property="IsPressed" Value="True"/>
<Trigger Property="IsEnabled" Value="False"/>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="Red"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="FontSize" Value="10.667"/>
</Style>
亲切的问候。
答案 0 :(得分:1)
如果它是RegistrationButton,你也应该将它声明为RegistrationButton。
<my:RegistrationButton xmlns:my="clr-namespace:MyWpfProject" x:Name="RegistrationButton" HorizontalAlignment="Center" Height="71" Width="148"
Style="{DynamicResource ButtonStyleRegistration}"
Margin="10,0,5,0"
Click="RegistrationButton_Click" />
请注意xmlns包含带别名 my 的命名空间
当它在您当前的程序集中时使用xmlns:my="clr-namespace:MyWpfProject"
或者
如果RegistrationButton位于名为 MyAssembly
xmlns:my="clr-namespace:MyWpfProject;assembly=MyAssembly"
中,请使用MyWpfProject
修改强>
另外,根据Style
调整ControlTemplate
,相应地将TargetType
设置为TargetType="{x:Type my:RegistrationButton}"
xmlns:my="clr-namespace=...
也可以放在你的xaml的根目录中。