2012-09-11 128 views
-2

我有一個問題,即時製作我自己的自定義SharePoint Web部件。 一切都很順利,但問題是,我無法弄清楚如何改變文本框和標籤的位置。 任何人都知道我可以如何改變位置?如何更改文本框的位置

我想在C#中完成它。

問題已解決。

+0

語言?應用?任何描述你正在使用的信息都會爲你提供正確的方向。 – ColdLogic

+0

即時通訊試圖在C#中完成它,它是一個共享點的webpart。 – user1652050

回答

0

在組件ID的幫助下。設置該特定組件的位置。

0

「如何改變文本框和標籤的位置」

在這個例子中,我使用一個按鈕(動作按鈕上點擊執行),我也加入瞭如何生成一個文本框和一個標籤(當你按下這個按鈕)。 只是因爲這通常是將位置設置爲控件的常見過程。

private void button1_Click(object sender, EventArgs e) 
    { 
     // Settings to generate a New TextBox 
     TextBox txt = new TextBox(); // Create the Variable for TextBox 
     txt.Name = "MyTextBoxID";  // Identify your new TextBox 

     // Create Variables to Define "X" and "Y" Locations 
     var txtLocX = txt.Location.X; 
     var txtLocY = txt.Location.Y; 

     //Set your TextBox Location Here 
     txtLocX = 103; 
     txtLocY = 74; 

     // This adds a new TextBox 
     this.Controls.Add(txt); 

     // Now do the same for Labels 

     // Settings to generate a New Label 
     Label lbl = new Label(); // Create the Variable for Label 
     lbl.Name = "MyNewLabelID"; // Identify your new Label 

     // Create Variables to Define "X" and "Y" Locations 
     var lblLocX = lbl.Location.X; 
     var lblLoxY = lbl.Location.Y; 

     //Set your Label Location Here 
     lblLocX = 34; 
     lblLoxY = 77; 

     // Adds a new Label 
     this.Controls.Add(lbl); 
    } 
} 

注意:這只是一個示例,回發後將不起作用。

我希望這回答你和每個人的問題。