Ejemplo n.º 1
0
        internal override void Load(BinaryReader reader, ushort dataFormatVersion)
        {
            KeyCombo control = default(KeyCombo);

            control.Load(reader, dataFormatVersion);
            Control = control;
        }
Ejemplo n.º 2
0
        internal override void Load(BinaryReader reader)
        {
            // Have to do this because it's a struct property? Weird.
            var temp = new KeyCombo();

            temp.Load(reader);
            Control = temp;
        }
Ejemplo n.º 3
0
        internal override void Load(BinaryReader reader, UInt16 dataFormatVersion)
        {
            // Have to do this because it's a struct property? Weird.
            var temp = new KeyCombo();

            temp.Load(reader, dataFormatVersion);
            Control = temp;
        }
Ejemplo n.º 4
0
 internal override void Load(BinaryReader reader)
 {
     keyCombo.Load(reader);
 }
Ejemplo n.º 5
0
		internal override void Load( BinaryReader reader )
		{
			// Have to do this because it's a struct property? Weird.
			var temp = new KeyCombo();
			temp.Load( reader );
			Control = temp;
		}