我发现可以在UWP中使用的Launcher类: https://msdn.microsoft.com/en-us/magazine/mt784669.aspx 但是,我无法在UWP中导入Launcher类。找不到该类。 System.Windows.Launcher。
我的进口商品:
Ext.application({
name: 'Fiddle',
launch: function () {
Ext.create({
xtype: 'form',
title: 'Checkbox Group',
width: '100%',
bodyPadding: 10,
renderTo: Ext.getBody(),
bbar: ['->', {
text: 'Reset All',
handler: function () {
var checkboxgroup = this.up('form').down('checkboxgroup');
checkboxgroup.setValue(false)
}
},{
text: 'Reset Item 2',
handler: function () {
var checkboxgroup = this.up('form').down('checkboxgroup');
checkboxgroup.down('[inputValue=2]').setValue(false)
}
}],
items: [{
xtype: 'checkboxgroup',
fieldLabel: 'Two Columns',
// Arrange checkboxes into two columns, distributed vertically
columns: 2,
vertical: true,
items: [{
boxLabel: 'Item 1',
name: 'rb',
inputValue: '1'
}, {
boxLabel: 'Item 2',
name: 'rb',
inputValue: '2',
checked: true
}, {
boxLabel: 'Item 3',
name: 'rb',
inputValue: '3'
}, {
boxLabel: 'Item 4',
name: 'rb',
inputValue: '4'
}, {
boxLabel: 'Item 5',
name: 'rb',
inputValue: '5'
}, {
boxLabel: 'Item 6',
name: 'rb',
inputValue: '6'
}]
}]
});
}
});
答案 0 :(得分:0)
它是Windows.System.Launcher,而不是System.Windows.Launcher。
如果您尝试从非UWP应用程序使用它,还请确保您引用Windows.winmd(在UWP中会自动引用)。