-
Notifications
You must be signed in to change notification settings - Fork 730
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
448 additions
and
500 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
16 changes: 5 additions & 11 deletions
16
src/Uno.UI/UI/Xaml/Controls/TreeView/TreeViewCollapsedEventArgs.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 |
---|---|---|
@@ -1,33 +1,27 @@ | ||
#pragma warning disable 108 // new keyword hiding | ||
#pragma warning disable 114 // new keyword hiding | ||
using System; | ||
namespace Windows.UI.Xaml.Controls | ||
{ | ||
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __MACOS__ | ||
[global::Uno.NotImplemented] | ||
#endif | ||
[Uno.NotImplemented] | ||
public partial class TreeViewCollapsedEventArgs | ||
{ | ||
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __MACOS__ | ||
[global::Uno.NotImplemented] | ||
[Uno.NotImplemented] | ||
public global::Windows.UI.Xaml.Controls.TreeViewNode Node | ||
{ | ||
get | ||
{ | ||
throw new global::System.NotImplementedException("The member TreeViewNode TreeViewCollapsedEventArgs.Node is not implemented in Uno."); | ||
} | ||
} | ||
#endif | ||
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __MACOS__ | ||
[global::Uno.NotImplemented] | ||
|
||
[Uno.NotImplemented] | ||
public object Item | ||
{ | ||
get | ||
{ | ||
throw new global::System.NotImplementedException("The member object TreeViewCollapsedEventArgs.Item is not implemented in Uno."); | ||
} | ||
} | ||
#endif | ||
// Forced skipping of method Windows.UI.Xaml.Controls.TreeViewCollapsedEventArgs.Node.get | ||
// Forced skipping of method Windows.UI.Xaml.Controls.TreeViewCollapsedEventArgs.Item.get | ||
} | ||
} |
25 changes: 12 additions & 13 deletions
25
src/Uno.UI/UI/Xaml/Controls/TreeView/TreeViewDragItemsCompletedEventArgs.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
36 changes: 18 additions & 18 deletions
36
src/Uno.UI/UI/Xaml/Controls/TreeView/TreeViewDragItemsStartingEventArgs.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
22 changes: 10 additions & 12 deletions
22
src/Uno.UI/UI/Xaml/Controls/TreeView/TreeViewExpandingEventArgs.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
Oops, something went wrong.