从QLineEdit()获取输入

时间:2017-02-27 09:57:20

标签: python python-3.x pyqt pyqt5

有人让我成为了一个GUI,但我仍然不明白一些东西:

text_1
  1. 为什么当我尝试打印 print text_1.text() ^ SyntaxError: invalid syntax 中的内容时出现语法错误?
  2. public DataTable Load_to_DataGrid(string Line_ID)
    {
        con.ConnectionString = ConfigurationManager.ConnectionStrings[1].ConnectionString;
        com = new SqlCommand("LoadPoints_ToGrid", con);
        com.CommandType = CommandType.StoredProcedure;
        com.Parameters.Add(new SqlParameter("@Line_ID", Line_ID));
        com.Parameters.Add("@outp", SqlDbType.NVarChar,40000).Direction = ParameterDirection.Output;
        SqlDataAdapter sda = new SqlDataAdapter(com);
        DataTable dt = new DataTable();
    
        sda.Fill(dt);
        return dt;            
     }
    
    1. 为什么在点击“运行”按钮后没有任何反应?

0 个答案:

没有答案