/// <summary> /// chọn hình ảnh /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void browerButton_Click(object sender, RoutedEventArgs e) { OpenFileDialog dialog = new OpenFileDialog(); // bộ lọc chỉ cho phép chọn file hình ảnh dialog.Filter = "Image files(*.png; *.jpeg; *.jpg)| *.png; *.jpeg; *.jpg"; if (dialog.ShowDialog() == true) { // lấy hình đường dẫn hình ảnh ImagePath = dialog.FileName; // hiển thị tên hình ảnh nameImageTextBlock.Text = ImagePath.Substring(ImagePath.LastIndexOf("\\") + 1); } }