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.
Projet_IHM/Sources/Stim/EntryPopup.xaml.cs

22 lines
433 B

using CommunityToolkit.Maui.Views;
namespace Stim;
public partial class EntryPopup : Popup
{
public EntryPopup(string fieldName)
{
InitializeComponent();
LabelTxt.Text = fieldName;
}
public void CloseButton(object sender, EventArgs e)
{
if (!string.IsNullOrWhiteSpace(Entrytxt.Text)) Close(Entrytxt.Text);
}
private void Valider(object sender, EventArgs e)
{
}
}