Skip to content

Commit

Permalink
Merge pull request #3535 from unoplatform/dev/jela/using-uno-doc
Browse files Browse the repository at this point in the history
docs: Add missing constructor in Control Template sample
  • Loading branch information
jeromelaban committed Jul 15, 2020
2 parents 4bbd0ce + fc647f5 commit 5559442
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/articles/using-uno-ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,11 @@ For the following control class:
```csharp
public class MyUserControl : Control
{
public MyUserControl()
{
InitializeComponent();
}

public string MyCustomContent
{
get { return (string)GetValue(MyCustomContentProperty); }
Expand Down

0 comments on commit 5559442

Please sign in to comment.