2010-12-27 02:47:10 +00:00
|
|
|
using Android.Widget;
|
|
|
|
|
2010-12-27 04:18:10 +00:00
|
|
|
namespace MonoStockPortfolio.Activites
|
2010-12-27 02:47:10 +00:00
|
|
|
{
|
|
|
|
public partial class PortfolioActivity
|
|
|
|
{
|
2010-12-27 04:18:10 +00:00
|
|
|
public static string ClassName { get { return "monostockportfolio.activites.PortfolioActivity"; } }
|
2010-12-27 02:47:10 +00:00
|
|
|
|
|
|
|
public static string Extra_PortfolioID { get { return "monoStockPortfolio.PortfolioActivity.PortfolioID"; } }
|
|
|
|
public long ThisPortofolioId { get { return Intent.GetLongExtra(Extra_PortfolioID, -1); } }
|
|
|
|
|
2011-02-06 01:48:55 +00: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-27 02:47:10 +00:00
|
|
|
}
|
|
|
|
}
|