-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Point users to implemented versions of obsolete WUX controls
- Loading branch information
1 parent
2d35d99
commit 9cdaacb
Showing
11 changed files
with
94 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
|
||
namespace Windows.UI.Xaml.Controls; | ||
|
||
[Obsolete( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.RatingControl instead.")] | ||
public partial class RatingControl | ||
{ | ||
public RatingControl() | ||
{ | ||
throw new NotImplementedException( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.RatingControl instead."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
|
||
namespace Windows.UI.Xaml.Controls; | ||
|
||
[Obsolete( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.SplitButton instead.")] | ||
public partial class SplitButton | ||
{ | ||
public SplitButton() | ||
{ | ||
throw new NotImplementedException( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.SplitButton instead."); | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
src/Uno.UI/UI/Xaml/Controls/Unsupported/ToggleSplitButton.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
|
||
namespace Windows.UI.Xaml.Controls; | ||
|
||
[Obsolete( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.ToggleSplitButton instead.")] | ||
public partial class ToggleSplitButton | ||
{ | ||
public ToggleSplitButton() | ||
{ | ||
throw new NotImplementedException( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.ToggleSplitButton instead."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
|
||
namespace Windows.UI.Xaml.Controls; | ||
|
||
[Obsolete( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.TreeView instead.")] | ||
public partial class TreeView | ||
{ | ||
public TreeView() | ||
{ | ||
throw new NotImplementedException( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.TreeView instead."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
|
||
namespace Windows.UI.Xaml.Controls; | ||
|
||
[Obsolete( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.TwoPaneView instead.")] | ||
public partial class TwoPaneView | ||
{ | ||
public TwoPaneView() | ||
{ | ||
throw new NotImplementedException( | ||
"The Windows.UI.Xaml.Controls version of this control is not supported. " + | ||
"Please use Microsoft.UI.Xaml.Controls.TwoPaneView instead."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters