All products / Saraff.AxHost.NET
ApplicationControlAttribute Class
Syntax
[AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
public sealed class ApplicationControlAttribute:Attribute
Constructors
/// <summary>
/// Initializes a new instance of the <see cref="ApplicationControlAttribute"/> class.
/// </summary>
public ApplicationControlAttribute()
Properties
/// <summary>
/// Возвращает или устанавливает заголовок окна.
/// </summary>
public string Title {get; set;}
/// <summary>
/// Возвращает или устанавливает ширину окна.
/// </summary>
public int Width {get; set;}
/// <summary>
/// Возвращает или устанавливает высоту окна.
/// </summary>
public int Height {get; set;}
Remarks
Указывает на возможность предоставления классу хостинга в приложениях c неуправляемым кодом. Indicates that the control require hosting on applications with unmanaged code.
Examples
[ApplicationControl(Width=640,Height=480)]
public sealed partial class ScanControl:ApplicationControl {
// ...
}