Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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