Eto.Forms.TableLayout.OnDeserialized C# (CSharp) Method

OnDeserialized() private method

private OnDeserialized ( bool direct ) : void
direct bool
return 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