Sqlserver
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Sqlserver

Làm thế nào để hiển thị hình ảnh hoặc thông tin từ cơ sở dữ liệu với nút radio vòng lặp for? trong c #

public partial class Form1 : Form {
   public Form1(){
     InitializeComponent();
     //do this if you want to register the Load event handler using code
     Load += Form1_Load;
   }
   FlowLayoutPanel panel = new FlowLayoutPanel();
   private void InitPanel(){
     panel.Size = new Size(600, 150);
     panel.Location = new Point(50, 50);
     panel.FlowDirection = FlowDirection.LeftToRight;
     panel.AutoScroll = true;
     panel.WrapContents = false;
     Controls.Add(panel);
   }
   //Load event handler
   private void Form1_Load(object sender, EventArgs e){
     InitPanel();
     panel.SuspendLayout();
     string cmdText = "SELECT (FirstName + ' ' + MiddleName + ' ' + LastName) as FullName, " +
                 "imgPath as ImagePath FROM TableVote WHERE Position='President'";
     using(SqlCommand com = new SqlCommand(cmdText,sc)){
       if(sc.State != ConnectionState.Open) sc.Open();
       SqlDataReader reader = com.ExecuteReader();       
       while(reader.Read()){
         AddRadioButton(reader.GetString(0), reader.GetString(1));
       }
       reader.Close();
       sc.Close();
       panel.ResumeLayout(true);
     }
   }
   private void AddRadioButton(string fullName, string imagePath){
     RadioButton radio = new RadioButton {Text = fullName, Parent = panel};
     radio.AutoSize = true;
     radio.Image = new Bitmap(Image.FromFile(imagePath),75,75);
     radio.TextImageRelation = TextImageRelation.ImageAboveText;    
     radio.CheckAlign = ContentAlignment.BottomCenter;   
   }
}

LƯU Ý :Tôi có thể thấy rằng bạn lưu trữ 2 thông tin liên quan đến hình ảnh trong bảng của mình, tôi nghĩ bạn nên chọn 1 trong số chúng, lưu trữ Image Path dễ dàng, nhẹ nhàng cho bảng của bạn nhưng thông tin có thể bị mất nếu Image Path của bạn không chỉ vào hình ảnh thực tế nữa.




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Không thể kết nối với SQL Server bằng PHP

  2. Sử dụng một Hàm để đơn giản hóa Truy vấn SQL có hiệu suất imapact lớn không?

  3. TRONG so với THAM GIA với các bộ hàng lớn

  4. SQL Server chuyển đổi cột thành cột nhận dạng

  5. Có cách nào để chuyển đổi varchar thành DATETIME trong SQL SERVER 2008 không?