-
Notifications
You must be signed in to change notification settings - Fork 101
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
10 changed files
with
56 additions
and
186 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
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
----------------After Installation---------------- | ||
|
||
Go your XAML page and add that xmlns to your <ContentPage tag | ||
|
||
xmlns:input="clr-namespace:Plugin.InputKit.Shared.Controls;assembly=Plugin.InputKit" | ||
|
||
|
||
Then you will be able to use controls easily inside your page like: | ||
|
||
|
||
<input:CheckBox Text="Option 1" Type="Check" /> | ||
|
||
------------------------------------------------------------ | ||
|
||
|
||
--------------EASY--DESIGNING---------------- | ||
|
||
If you want to set all the controls in your app you can use GlobalSettings for this package. | ||
Go your | ||
|
||
App.cs | ||
|
||
to set default values of controls and set some properties in control which you need. Like below: | ||
|
||
Plugin.InputKit.Shared.Controls.CheckBox.GlobalSetting.BorderColor = Color.Red; | ||
Plugin.InputKit.Shared.Controls.CheckBox.GlobalSetting.Size = 36; | ||
Plugin.InputKit.Shared.Controls.RadioButton.GlobalSetting.Color = Color.Red; | ||
|
||
|
||
...and you'll see all the controls default values changed in entire project. | ||
|
||
|