Path="#Crow.Images.Icons.iconInfo.svg" />
<Label Font="serif, 12" Height="{./HeightPolicy}" Width="{./WidthPolicy}" Text="{./Message}"
TextAlignment="Left"
- Multiline="true" WordWrap="true"/>
+ Multiline="true" />
</HorizontalStack>
<HorizontalStack Height="-1" Width="{./WidthPolicy}" Margin="3">
<GraphicObject Height="5"/>
else if (reader.Name == "Path")
path = reader.Value;
}
-
+ reader.MoveToElement ();
using (IMLReader iTmp = new IMLReader (null, reader.ReadInnerXml ())) {
string uid = Guid.NewGuid ().ToString ();
Interface.Instantiators [uid] =
if (t == null)
throw new Exception (reader.Name + " type not found");
- reader.il.Emit(OpCodes.Newobj, t.GetConstructors () [0]);
+ reader.il.Emit(OpCodes.Newobj, t.GetConstructors () [0]);//TODO:search parameterless ctor
reader.il.Emit (OpCodes.Stloc_0);//child is now loc_0
reader.emitLoader(t);