mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-11-15 19:29:25 +00:00
15 lines
No EOL
685 B
C#
15 lines
No EOL
685 B
C#
using Android.Widget;
|
|
|
|
namespace MonoStockPortfolio.Activites
|
|
{
|
|
public partial class PortfolioActivity
|
|
{
|
|
public static string ClassName { get { return "monostockportfolio.activites.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); } }
|
|
}
|
|
} |