-
Sujet
-
Yo, j’essaye de créer une interface winforms en c#
Dans mon cas je souhaite récupérer la « racine » de mon projet qui est `D:\…Dream Interface`
private void ListBoxBanners_SelectedIndexChanged(object sender, EventArgs e) { if (listBoxBanners.SelectedIndex != -1) { var selectedBanner = banners[listBoxBanners.SelectedIndex]; string projectRootPath = Directory.GetParent(Directory.GetParent(AppDomain.CurrentDomain.BaseDirectory).FullName).FullName; string bannerPath = Path.Combine(projectRootPath, selectedBanner.Path); MessageBox.Show($"Banner Path : {projectRootPath}", "Banner Path", MessageBoxButtons.OK, MessageBoxIcon.Information); Debug.WriteLine(projectRootPath); pictureBox.ImageLocation = bannerPath; } }
——————–
ranma_chu – Envoyé depuis le Discord : Culte du code
- Vous devez être connecté pour répondre à ce sujet.