mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-11-15 11:19:26 +00:00
12 lines
No EOL
459 B
C#
12 lines
No EOL
459 B
C#
using Android.Widget;
|
|
|
|
namespace MonoStockPortfolio.Activites
|
|
{
|
|
public partial class MainActivity
|
|
{
|
|
public static string ClassName { get { return "monostockportfolio.activites.MainActivity"; } }
|
|
|
|
protected Button AddPortfolioButton { get { return FindViewById<Button>(Resource.Id.btnAddPortfolio); } }
|
|
protected ListView PortfolioListView { get { return FindViewById<ListView>(Resource.Id.portfolioList); } }
|
|
}
|
|
} |