Files
RobustToolbox/XMLSchemas/KeyBindings.xsd
Pieter-Jan Briers afe3913893 Fix EOLs (#235)
2017-06-14 21:42:48 -06:00

15 lines
638 B
XML

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="KeyBindings" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="KeyBindings" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Binding">
<xs:complexType>
<xs:attribute name="Key" type="xs:string" />
<xs:attribute name="Function" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>