Share via


SizeChangedEventHandler Delegate

Definition

Deprecated. Represents the method that will handle the SizeChanged event.

public delegate void SizeChangedEventHandler(WebUICommandBarSizeChangedEventArgs ^ eventArgs);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.UI.WebUI.Core.WebUICommandBarContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(3567058492, 56622, 19496, 182, 39, 48, 58, 127, 145, 26, 245)]
class SizeChangedEventHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.UI.WebUI.Core.WebUICommandBarContract), 65536)]
[Windows.Foundation.Metadata.Guid(3567058492, 56622, 19496, 182, 39, 48, 58, 127, 145, 26, 245)]
public delegate void SizeChangedEventHandler(WebUICommandBarSizeChangedEventArgs eventArgs);
var sizeChangedEventHandlerHandler = function(eventArgs){
/* Your code */
}
Public Delegate Sub SizeChangedEventHandler(eventArgs As WebUICommandBarSizeChangedEventArgs)

Parameters

eventArgs
WebUICommandBarSizeChangedEventArgs

Provides data when the size of the command bar changes.

Attributes

Windows requirements

Device family
Windows Mobile Extension SDK (introduced in 10.0.10240.0)
API contract
Windows.UI.WebUI.Core.WebUICommandBarContract (introduced in v1.0)

Remarks

Use of the Command Bar (also known as "App Bar") UX element is deprecated for UWP apps using JavaScript and no longer supported. If your app still requires it, this functionality is available from the WinJS 4 library.

Applies to