Eto.Forms.TableLayout.OnDeserialized C# (CSharp) 메소드

OnDeserialized() 개인적인 메소드

private OnDeserialized ( bool direct ) : void
direct bool
리턴 void
		void OnDeserialized(bool direct)
		{
			if (Loaded || direct)
			{
				if (!created)
				{
					var rows = Properties.Get<Collection<TableRow>>(rowsKey);
					if (rows != null)
					{
						Create();
					}
				}
			}
		}

Same methods

TableLayout::OnDeserialized ( StreamingContext context ) : void