Added generic model describing ios/tvos/macos types
This commit is contained in:
Родитель
1655f9f510
Коммит
cda666c3bf
|
@ -0,0 +1,22 @@
|
||||||
|
namespace Xamarin.UIProviders.DesignTime
|
||||||
|
open System
|
||||||
|
open System.IO
|
||||||
|
open System.Xml
|
||||||
|
open System.Xml.Linq
|
||||||
|
|
||||||
|
type Outlet = {
|
||||||
|
Property:string
|
||||||
|
ElementName: string }
|
||||||
|
|
||||||
|
type Action = {
|
||||||
|
Selector:string
|
||||||
|
ElementName: string }
|
||||||
|
|
||||||
|
type ViewController = {
|
||||||
|
XmlType: string
|
||||||
|
CustomClass : string
|
||||||
|
Outlets: Outlet List
|
||||||
|
Actions: Action List}
|
||||||
|
|
||||||
|
type Scene = {
|
||||||
|
ViewController : ViewController }
|
Загрузка…
Ссылка в новой задаче