Sim*_*son 2 .net c# wpf controls .net-core
我正在尝试学习如何设计 Wpf .NET Core 自定义控件。我一直在严格关注 YouTube 视频,但在运行该解决方案时,该控件未显示在主窗口上。有人能看到我做错了什么吗?
主窗口.xaml
<Window x:Class="AnalogClock.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:AnalogClock"
xmlns:custom="clr-namespace:AnalogClock.CustomControls"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Label Content="Test"/>
<StackPanel>
<custom:AnalogClock/>
</StackPanel>
</Grid>
</Window>
Run Code Online (Sandbox Code Playgroud)
/主题/Generic.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AnalogClock.Themes">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/CustomControls/AnalogClockStyle.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
Run Code Online (Sandbox Code Playgroud)
/CustomControls/AnalogClock.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
namespace AnalogClock.CustomControls
{
class AnalogClock : Control
{
static AnalogClock()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(AnalogClock), new FrameworkPropertyMetadata(typeof(AnalogClock)));
}
}
}
Run Code Online (Sandbox Code Playgroud)
/CustomControls/AnalogClockStyle.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AnalogClock.CustomControls">
<Style TargetType="local:AnalogClock">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:AnalogClock">
<Grid>
<Line x:Name="PART_HourHand"
Stroke="Black"
StrokeThickness="2"
VerticalAlignment="Center"
HorizontalAlignment="Center"
X1="0"
X2="-75"/>
<Line x:Name="PART_MinuteHand"
Stroke="Black"
StrokeThickness="2"
VerticalAlignment="Center"
HorizontalAlignment="Center"
X1="0"
X2="-100"/>
<Line x:Name="PART_SecondHand"
Stroke="Red"
StrokeThickness="2"
VerticalAlignment="Center"
HorizontalAlignment="Center"
X1="0"
X2="-100"/>
<Ellipse x:Name="PART_Border"
Stroke="Black"
Fill="Black"
StrokeThickness="2"
Width="210"
Height="210"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
Run Code Online (Sandbox Code Playgroud)
AnalogClock将以下属性添加到项目中的任何类文件中,例如定义类的文件中:
[assembly: System.Windows.ThemeInfo(
System.Windows.ResourceDictionaryLocation.None,
System.Windows.ResourceDictionaryLocation.SourceAssembly
)]
Run Code Online (Sandbox Code Playgroud)
AssemblyInfo.cs与 .NET Framework 项目不同,.NET Core 项目默认不包含包含此属性的文件。找到通用资源字典是必需的。