mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-07 11:18:46 +00:00
15 lines
665 B
C#
15 lines
665 B
C#
|
using Android.Widget;
|
||
|
|
||
|
namespace MonoStockPortfolio
|
||
|
{
|
||
|
public partial class PortfolioActivity
|
||
|
{
|
||
|
public static string ClassName { get { return "monostockportfolio.PortfolioActivity"; } }
|
||
|
|
||
|
public static string Extra_PortfolioID { get { return "monoStockPortfolio.PortfolioActivity.PortfolioID"; } }
|
||
|
public long ThisPortofolioId { get { return Intent.GetLongExtra(Extra_PortfolioID, -1); } }
|
||
|
|
||
|
protected TableLayout QuoteTable { get { return FindViewById<TableLayout>(Resource.id.quoteTable); } }
|
||
|
protected Button AddPositionButton { get { return FindViewById<Button>(Resource.id.btnAddPosition); } }
|
||
|
}
|
||
|
}
|