answersLogoWhite

0


Best Answer

In .NET, the class name is System.Windows.Forms.Control

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which class is used to define the controls in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the utility of storage class in c?

In C there are four storage classes: auto, static, extern and register. These storage classes essentially define the scope or visibility of a name (a function or variable). All four are inherited from B, the language from which C evolved.The auto storage class is used to explicitly declare a non-static local variable. However, given that all non-static local variables are implicitly automatic in C, explicit use of the auto storage class is therefore redundant in C. Moreover, in C++11, explicit use of the auto storage class was dropped entirely; the auto keyword is now used for automatic type deduction in C++.The static storage class is used to explicitly declare a static local variable. In addition, all global variables and functions are implicitly static and have external linkage, but if explicitly declared static they have internal linkage only.The extern storage class is used to allow access to a name that has external linkage.The register storage class is used to define a variable that should be allocated in a CPU register rather than in working memory (RAM).


What is an interface class and what is an abstract class?

The term interface class does not exist in C#. If this is a term describing a class being an interface to other component (human, subsystems, etc), it is very application specific. The designer of that application should know the abstraction.However, C# does have another type called interface. An interface is NOT a class. An interface defines the intention of some behaviors that classes may be extended it and provides the implementation. The intention, is nothing but method signatures, which defines the return data type, the method name, and any method arguments and associated data type. The implementation is the code of the method. Interface is used for separating the concern of design and implementation.Abstract class is a class with abstract keyword. It can be just like a class without that keyword (then, why it is an abstract class?). But it may have some methods or properties defined as abstract. These abstract methods, like the method signatures of an interface, defines the intention.The subclasses of such an abstract class would need to implement those abstract methods (providing the code).There are more common, differences between interfaces and abstract classes, please see answer(s) of those related questions in C# category.


Why functions are not used in c plus plus?

Of course they are used. Both stand-alone and class-member functions are used in C++.


What is the use of define key word in c?

Actually, the preprocessor is not part of the C compiler, but here you are: #define is meant to define symbols. Examples #define NULL ((void *)0) #define getchar() getc(stdin)


Class hierarchy is a fundamental concept of object oriented programs explain what this term means with reference to inheritance abstraction and instantiation?

Class hierarchy is a term used in Java. It is used for identifying the inheritance hierarchy or the parent class relationships Ex: Public class B extends C { } Public class A extends B { } Here if we take the class hierarchy for class 'A' it would be A

Related questions

Which class is used to define the controls in c sharp?

.Ascx class file is used to define the controls in c#


What are classes in cars Like class E and C?

Classes in cars that include class E or class C are used to define the trim package included with the car. Some designate luxury packages while some are more standard.


How you define a class in C sharp?

The simplest way to define a class, assuming you're within a namespace:class MyClassName {}And to include it in a separate namespace, and have it accessible anywhere (public):namespace MyNameSpace {public class MyClassName {}}


Similarities between C plus plus struct and class?

The only difference between a struct and a class in C++ is that struct members are public by default while class members are private by default. Other than that they act and behave in exactly the same way and are both used to define classes. By convention, struct is used exactly as it would be used in C, with all public members and no member functions, to provide backward compatibility with C-style code.


Where can I find a used C Class Mercedes?

You can find used c class Mercedes at exchangeandmart.co.uk, vcars.co.uk, motors.co.uk. Its the best place online to find quality used c class Mercedes.


What is message passing in c plus plus?

-define class with necessary data member & member function. -create object of that class. -communication.


When you define a c plus plus class what items are considered part of the interface?

The interface of a C++ class is the public methods and attributes that are exposed by the class. In a pure abstract base class, the interface is enforced by the compiler in each of the derived child classes.


What is class c fire extinguisher is used for?

A class C fire extinguisher is used for electrical fires. A all purpose A, B, C extinguisher can also be used.


Class c fire extinguisher is used for?

A class C fire is an electrical fire. A class C extinguisher is approved for electrical fires.


Why class is publicly define in c sharp?

If you want a class to be used by any other applications, it must be defined as "public". It is especially true for those "library" classes from Microsoft. Any C# application has at least 1 class to start with. That class does not need to be public, because it is yours only. (the default accessor is internal) However, if you want that class publicly available for other application, that class must be defined as public.


How do you define a class in C?

class GraduatingClass {}The above class is the same as:internal class GraduatingClass {}A class has default access modifier of "internal" but most of the academic examples would show you a publicclass.To follow Object-Oriented encapsulation principle, every class should start with "internal", not public. If that class is only used / referenced by another class, perhaps it can be a private class of that one.


What is the utility of storage class in c?

In C there are four storage classes: auto, static, extern and register. These storage classes essentially define the scope or visibility of a name (a function or variable). All four are inherited from B, the language from which C evolved.The auto storage class is used to explicitly declare a non-static local variable. However, given that all non-static local variables are implicitly automatic in C, explicit use of the auto storage class is therefore redundant in C. Moreover, in C++11, explicit use of the auto storage class was dropped entirely; the auto keyword is now used for automatic type deduction in C++.The static storage class is used to explicitly declare a static local variable. In addition, all global variables and functions are implicitly static and have external linkage, but if explicitly declared static they have internal linkage only.The extern storage class is used to allow access to a name that has external linkage.The register storage class is used to define a variable that should be allocated in a CPU register rather than in working memory (RAM).