本文整理汇总了C#中Poker.GetInitialized方法的典型用法代码示例。如果您正苦于以下问题:C# Poker.GetInitialized方法的具体用法?C# Poker.GetInitialized怎么用?C# Poker.GetInitialized使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Poker
的用法示例。
在下文中一共展示了Poker.GetInitialized方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FormView_PageIndex2_loadComplete
public static void FormView_PageIndex2_loadComplete (Page p)
{
Poker fv = new Poker ();
p.Form.Controls.Add (fv);
Assert.AreEqual (0, fv.PageIndex, "#100");
Assert.AreEqual (true, fv.GetInitialized (), "#101");
Assert.AreEqual (true, fv.GetRequiresDataBinding (), "#102");
fv.PageIndex = 2;
Assert.AreEqual (2, fv.PageIndex, "#103");
Assert.AreEqual (true, fv.GetRequiresDataBinding (), "#104");
fv.PageIndex = -1;
Assert.AreEqual (2, fv.PageIndex, "#105");
Assert.AreEqual (true, fv.GetRequiresDataBinding (), "#106");
}
示例2: Defaults
public void Defaults ()
{
Poker p = new Poker ();
Assert.IsNull (p.DataSource, "A1");
Assert.AreEqual ("", p.DataSourceID, "A2");
Assert.IsFalse (p.GetIsBoundUsingDataSourceID(), "A3");
Assert.IsFalse (p.GetInitialized(), "A4");
}
示例3: FormView_PageIndex
public void FormView_PageIndex ()
{
Poker p = new Poker ();
Assert.AreEqual (0, p.PageIndex, "#00");
Assert.AreEqual (false, p.GetInitialized (), "#01");
Assert.AreEqual (false, p.GetRequiresDataBinding(), "#02");
p.PageIndex = 2;
Assert.AreEqual (2, p.PageIndex, "#03");
Assert.AreEqual (false, p.GetRequiresDataBinding (), "#04");
p.PageIndex = -1;
Assert.AreEqual (2, p.PageIndex, "#05");
Assert.AreEqual (false, p.GetRequiresDataBinding (), "#06");
}
示例4: Initialized2_Init
public static void Initialized2_Init (Page p) {
Poker c = new Poker ();
p.Form.Controls.Clear ();
p.Form.Controls.Add (c);
Assert.IsFalse (c.GetInitialized (), "Initialized_Init");
Assert.IsFalse (c.GetRequiresDataBinding (), "RequiresDataBinding_Init");
}