-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 AndroidDebloater V2.0
AndroidDebloater V2.0
- Loading branch information
Showing
9 changed files
with
201 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
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,31 @@ | ||
using System.ComponentModel; | ||
|
||
namespace AndroidDebloater.Components; | ||
|
||
public class AndroidPackage : INotifyPropertyChanged | ||
{ | ||
private string _text; | ||
private bool _isChecked; | ||
|
||
public event PropertyChangedEventHandler PropertyChanged; | ||
|
||
public string Text | ||
{ | ||
get => _text; | ||
set | ||
{ | ||
_text = value; | ||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Text))); | ||
} | ||
} | ||
|
||
public bool IsChecked | ||
{ | ||
get => _isChecked; | ||
set | ||
{ | ||
_isChecked = value; | ||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(IsChecked))); | ||
} | ||
} | ||
} |
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