JavaScript call reference Win RT component First letter must be lowercase

Source: Internet
Author: User
Keywords Javascript reference Initials

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.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.