We know that Visual Studio 2012 enables you to create Windows RT components in the C++#,VB and C + + languages that can be invoked by other Windows store applications. But one thing to be aware of is http://www.aliyun.com/zixun/aggregation/33906.html ">javascript's store application reference Win The first letter must be smaller for the property and method of the RT component. Regardless of the case when the win RT component is defined.
For example, a C # written WINRT Component class affirms the following:-
--------------------------------------------------------------------------------------------------------------- --------------------------------------
public sealed class Class1
{
public string AppName
{
Get
{
Return "My Hybrid App 12";
}
}
public static ilist<group> GetGroups ()
{
list<group> groups = new list<group> ();
Groups. ADD (New Group () {Name = "my Hybrid Group 1", Count = 3});
Groups. ADD (New Group () {Name = "my Hybrid Group 2", Count = 5});
return groups;
}
}
--------------------------------------------------------------------------------------------------------------- ------------------------------------------
When invoked in JavaScript, both AppName and getgroups must be lowercase. Like what
--------------------------------------------------------------------------------------------------------------- ---------------------------------------------
Todo:3-Populating page title from C # class.
Element.queryselector (". Titlearea. PageTitle"). Textcontent = new Cswinrtlib.class1 (). AppName;
var mygroups = CSWinRTLib.Class1.getGroups ();
--------------------------------------------------------------------------------------------------------------- ----------------------------------------------
This is often easy to ignore, the attachment is a complete example of the above code for your reference.