You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
511 B
23 lines
511 B
2 years ago
|
namespace IHM.Composant;
|
||
|
|
||
|
public partial class BanqueDispo : ViewCell
|
||
|
{
|
||
|
public BanqueDispo()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
public static readonly BindableProperty ImageBanqueProperty =
|
||
|
BindableProperty.Create("ImageBanque", typeof(string), typeof(BanqueDispo), "");
|
||
|
|
||
|
public string ImageBanque
|
||
|
{
|
||
|
get { return (string)GetValue(ImageBanqueProperty); }
|
||
|
set { SetValue(ImageBanqueProperty, value); }
|
||
|
}
|
||
|
|
||
|
private void Banque_Clicked(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|