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");
|
||
|
}
|
||
|
}
|
||
|
}
|