a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
495 B
C#
29 lines
495 B
C#
using System;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Diagnostics;
|
|
|
|
[Themeable (true)]
|
|
public partial class MyParent : System.Web.UI.UserControl
|
|
{
|
|
protected override void OnInit (EventArgs e)
|
|
{
|
|
Debug.WriteLine ("parent.OnInit");
|
|
base.OnInit (e);
|
|
}
|
|
[Themeable (true)]
|
|
public string ImageUrl
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
set
|
|
{
|
|
Debug.WriteLine ("parent.set_ImageUrl");
|
|
}
|
|
}
|
|
}
|