mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-11-15 19:29:25 +00:00
13 lines
No EOL
580 B
C#
13 lines
No EOL
580 B
C#
using Android.Widget;
|
|
|
|
namespace MonoStockPortfolio.Activites
|
|
{
|
|
public partial class EditPortfolioActivity
|
|
{
|
|
public static string ClassName { get { return "monostockportfolio.activites.EditPortfolioActivity"; } }
|
|
public static string Extra_PortfolioID { get { return "monoStockPortfolio.EditPortfolioActivity.PortfolioID"; } }
|
|
|
|
protected Button SaveButton { get { return FindViewById<Button>(Resource.id.btnSave); } }
|
|
protected EditText PortfolioName { get { return FindViewById<EditText>(Resource.id.portfolioName); } }
|
|
}
|
|
} |