2010-12-26 21:47:10 -05:00
|
|
|
using Android.Widget;
|
|
|
|
|
2010-12-26 23:18:10 -05:00
|
|
|
namespace MonoStockPortfolio.Activites
|
2010-12-26 21:47:10 -05:00
|
|
|
{
|
|
|
|
public partial class PortfolioActivity
|
|
|
|
{
|
2010-12-26 23:18:10 -05:00
|
|
|
public static string ClassName { get { return "monostockportfolio.activites.PortfolioActivity"; } }
|
2010-12-26 21:47:10 -05:00
|
|
|
|
|
|
|
public static string Extra_PortfolioID { get { return "monoStockPortfolio.PortfolioActivity.PortfolioID"; } }
|
|
|
|
public long ThisPortofolioId { get { return Intent.GetLongExtra(Extra_PortfolioID, -1); } }
|
|
|
|
|
2011-02-05 20:48:55 -05:00
|
|
|
protected ListView QuoteListview { get { return FindViewById<ListView>(Resource.Id.quoteListview); } }
|
|
|
|
protected Button AddPositionButton { get { return FindViewById<Button>(Resource.Id.btnAddPosition); } }
|
|
|
|
protected LinearLayout QuoteListviewHeader { get { return FindViewById<LinearLayout>(Resource.Id.quoteHeaderLayout); } }
|
2010-12-26 21:47:10 -05:00
|
|
|
}
|
|
|
|
}
|