Posts

Showing posts with the label forms

Solution Xamarin Forms Intellisense is not working inside Grid StackLayout etc

Image
Solution Xamarin Forms Intellisense is not working inside Grid StackLayout etc Introduction: If you create Xamarin.Forms project, probably you may find there is a visual studio Intellisense issue inside of a layout(StackLayout, Grid.. etc) like below: But if you type in the root level of ContentPage, Intellisense will work properly like below If you found above issue, this article can explain you about how to fix the intellisense issue inside of a StackLayout or Grid. Requirements: When the time of this article, I am using Visual Studio 2015 Enterprise Update 3. This article is prepared on Windows 10 machine. This article was prepared by taking sample which was Xamarin.Forms PCL project. Note:  Please install the latest updates of visual studio, for getting better improvements in intellisense  Description: There is a plugin available for Visual Studio to enable intellisense for Xamarin.Forms XAML. And also we need to follow few steps  below   to make intellisense wor...

What is GST Act 2017 Full details specifications PDF rules forms and FAQs

Image
What is GST Act 2017 Full details specifications PDF rules forms and FAQs What is GST Act 2017 � Full details, specifications, PDF, rules, forms, and FAQs:  The Central government passed four sets of GST Acts in the Budget session this year. These were Central GST Act, 2017; Integrated GST Act, 2017; Union Territory GST Act, 2017 and GST (Compensation to States) Act, 2017. The Acts were approved by the Parliament after they were introduced as the part of the Money Bill. Following the passage of the GST Acts, the GST Council decided the rate slabs for the Goods and Services to be taxed under the GST regime. Here are some details of the decisions taken by GST Council:  The threshold limit for exemption from levy of GST is Rs 20 lakh for the States except for the Special Category, where it is Rs 10 Lakh. The Council has adopted a four slab tax rate structure of 5%, 12%, 18% and 28% for GST. A separate cess would be levied on certain goods such as luxury cars, aerated drinks, pan ...

Showing and Closing Modeless Form Dialog Box With System Windows Forms Form

Image
Showing and Closing Modeless Form Dialog Box With System Windows Forms Form When programming AutoCAD, there are 2 styles of dialog box can be shown: Modal Dialog Box and Modeless Dialog Box . Modal dialog box is usually used for collecting user inputs, while modeless dialog box is more focused on showing information. While the dialog box displayed, modal dialog box blocks user from direct interaction with AutoCAD (that is, user cannot interact with AutoCAD UI until the modal dialog box is dismissed. But it DOES NOT mean AutoCAD stops its processing until the modal dialog box is closed), modeless dialog box floats on top AutoCAD UI and user can still interact with AutoCAD UI. With AutoCAD .NET API, one can use either Windows Form or WPF Window as dialog box. This discussion is limited to Windows Form, because it is still used far more often than WPF window. System.Windows.Forms.Form class has 2 methods to show a form: ShowDialog() and Show(). The former shows a form as modal form and t...