ここでカスタム コントロールを作成するのが最初のコントロール コードです
1. StartScreen.cs および ActDesc.cs コントロール。
- ページが初めて読み込まれると、2 つの編集ボタンが表示されます。
- それらのいずれかをクリックすると、コンテンツが含まれるテキスト ボックスが表示されます。
- 次に、保存ボタンイベントが発生しない保存をクリックします。
- 最初の CreateChildControls 中に作成されたコントロールがイベントを発生させるように思えます。ポストバックで作成されたものはイベントを発生させません。
- 編集ボタンの Command イベント ハンドラーで ControlsCreate() メソッドを呼び出します。また、EnsureChildControls() 呼び出しを使用してみました。まだ役に立たない?
これを達成する方法について誰かが私を導くことができますか?
. .
public class Wrapper
{
public string Name { get; set; }
public string Description { get; set; }
}
namespace Cons
{
public class StartScreen : CompositeControl
{
public StartScreen()
{
//
// TODO: Add constructor logic here
//
}
protected override void CreateChildControls()
{
List<Wrapper> list = new List<Wrapper>();
for (int i = 0; i < 2; i++)
{
list.Add(new Wrapper { Name = "D", Description = "DDDDDDDDDD" });
}
ActDesc desc = new ActDesc(list);
desc.DataBind();
this.Controls.Add(desc);
base.CreateChildControls();
}
}
}
public class ActDesc : CompositeControl
{
IEnumerable<Wrapper> list = new Wrapper[] { };
public ActDesc(IEnumerable<Wrapper> list)
{
this.list = list;
}
private void ControlsCreate()
{
this.Controls.Clear();
Table activityDescription = new Table();
int i = 1;
foreach (var item in list)
{
TableRow tempRow = new TableRow();
TableCell tempLeftCell = new TableCell();
tempLeftCell.Text = item.Name;
TableCell tempRightCell = new TableCell();
tempRightCell.HorizontalAlign = HorizontalAlign.Right;
if (EditId == 0)
{
ImageButton editButton = new ImageButton();
editButton.ID = string.Format("editButton_{0}", i);
editButton.ImageUrl = "add_16.png";
editButton.CommandArgument = i.ToString();
editButton.Command += new CommandEventHandler(editButton_Command);
editButton.CommandName = "Edit";
tempRightCell.Controls.Add(editButton);
}
else
{
if (EditId == i)
{
ImageButton saveButton = new ImageButton();
saveButton.ID = string.Format("saveButton_{0}", i);
saveButton.ImageUrl = "~/save.png";
saveButton.CommandArgument = i.ToString();
saveButton.Command += new CommandEventHandler(editButton_Command);
saveButton.CommandName = "Save";
tempRightCell.Controls.Add(saveButton);
}
}
tempRow.Cells.Add(tempLeftCell);
tempRow.Cells.Add(tempRightCell);
//Add the first row which contains the header name and the edit button if AllowEdit is true
activityDescription.Rows.Add(tempRow);
tempRow = new TableRow();
tempLeftCell = new TableCell();
tempLeftCell.ColumnSpan = 2;
Control tempControl;
if (EditId > 0 && EditId.Equals(i))
{
TextBox txt = new TextBox();
txt.TextMode = TextBoxMode.MultiLine;
txt.ID = "txt" + i;
txt.Text = item.Description;
tempControl = txt;
}
else
{
Literal litContent = new Literal();
litContent.ID = string.Format("literalContent_{0}", i);
litContent.Mode = LiteralMode.Transform;
litContent.Text = item.Description;
tempControl = litContent;
}
tempLeftCell.Controls.Add(tempControl);
tempRow.Cells.Add(tempLeftCell);
// Add the second row which shows the detailed HTML description..
activityDescription.Rows.Add(tempRow);
i = i + 1;
}
this.Controls.Add(activityDescription);
}
protected override void CreateChildControls()
{
ControlsCreate();
base.CreateChildControls();
}
void editButton_Command(object sender, CommandEventArgs e)
{
switch (e.CommandName)
{
case "Edit":
string id = e.CommandArgument.ToString();
EditId = Convert.ToInt32(id);
ControlsCreate();
break;
default:
break;
}
}
public int EditId
{
set
{
this.ViewState["__EditId"] = value;
}
get
{
return Convert.ToInt32(this.ViewState["__EditId"]);
}
}
public bool AllowEdit { get; set; }
}