Skip to content

Commit 5a6fb00

Browse files
fix: Add partial keyword to CustomControl.cs at TemplateControl
1 parent 15a6fbc commit 5a6fb00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/UnoItemTemplate/TemplatedControl.UWP/CustomControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace $rootnamespace$
1616
{
17-
public sealed class $safeitemname$ : Control
17+
public sealed partial class $safeitemname$ : Control
1818
{
1919
public $safeitemname$()
2020
{

src/UnoItemTemplate/TemplatedControl.WinUI/CustomControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace $rootnamespace$
1616
{
17-
public sealed class $safeitemname$ : Control
17+
public sealed partial class $safeitemname$ : Control
1818
{
1919
public $safeitemname$()
2020
{

0 commit comments

Comments
 (0)