Interface ITwoButtonPopup
The ITwoButtonPopup is an interface to describe confirmation pop-up which has circular two button, title, text, and content area
Namespace: Tizen.Wearable.CircularUI.Forms
Assembly: Tizen.Wearable.CircularUI.Forms.dll
Syntax
public interface ITwoButtonPopup
Properties
Content
Gets or sets content view of the Popup.
Declaration
View Content { get; set; }
Property Value
Type | Description |
---|---|
View |
FirstButton
Gets or sets left button of the Popup
Declaration
MenuItem FirstButton { get; set; }
Property Value
Type | Description |
---|---|
MenuItem |
SecondButton
Gets or sets right button of the Popup
Declaration
MenuItem SecondButton { get; set; }
Property Value
Type | Description |
---|---|
MenuItem |
Text
Gets or sets text of the Popup
Declaration
string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Title
Gets or sets title of the Popup
Declaration
string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Dismiss()
Dismisses the Popup
Declaration
void Dismiss()
Show()
Shows the Popup
Declaration
void Show()
Events
BackButtonPressed
Occurs when the Back button is pressed.
Declaration
event EventHandler BackButtonPressed
Event Type
Type | Description |
---|---|
System.EventHandler |