私のSharePoint2010c#/ asp.netサイトには、次のように定義されたクラスがあります。
namespace PDF_Library.VisualWebPart1
{
public partial class PDF_Library : Usercontrol
{
public static PDF_Library current;
protected void Page_Load(object sender, EventArgs e)
{
current = (PDF_Library)this;
}
}
}
public static class Page_State
{
public static Page is_display()
{
return PDF_Library.current.Page; // didn't work...
}
}
コンストラクターはありません。どうすればへの参照を取得できthe current instance of this class
ますか?
私はトップでこのようなことを試みました
public static PDF_Library current;
次に、関数でそれが持っていた
current = (PDF_Library)this;
しかし、それはうまくいきませんでした...