publicconststringImplicitTypeConvertionSupressWarningMessage="Implicit convertion methods might be removed by the linker. We don't have a reliable way to prevent it, except converting everything in compile time when possible.";
publicconststringImplicitTypeConvertionRequiresUnreferencedCodeMessage="Implicit convertion methods are required for type conversion.";
publicconststringImplicitTypeConversionSupressWarningMessage="Implicit conversion methods might be removed by the linker. We don't have a reliable way to prevent it, except converting everything in compile time when possible.";
publicconststringImplicitTypeConversionRequiresUnreferencedCodeMessage="Implicit conversion methods are required for type conversion.";
publicconststringTypeConvertionSupressWarningMessage="Convertion methods might be removed by the linker. We don't have a reliable way to prevent it, except converting everything in compile time when possible.";
publicconststringTypeConvertionRequiresUnreferencedCodeMessage="Convertion methods are required for type conversion, including op_Implicit, op_Explicit, Parse and TypeConverter.";
publicconststringTypeConversionSupressWarningMessage="Conversion methods might be removed by the linker. We don't have a reliable way to prevent it, except converting everything in compile time when possible.";
publicconststringTypeConversionRequiresUnreferencedCodeMessage="Conversion methods are required for type conversion, including op_Implicit, op_Explicit, Parse and TypeConverter.";
publicconststringReflectionBindingRequiresUnreferencedCodeMessage="BindingExpression and ReflectionBinding heavily use reflection. Consider using CompiledBindings instead.";
publicconststringReflectionBindingSupressWarningMessage="BindingExpression and ReflectionBinding internal heavily use reflection.";
/// Notifies the focus manager of a change in focus scope.
/// </summary>
/// <param name="scope">The new focus scope.</param>
/// <remarks>
/// This should not be called by client code. It is called by an <see cref="IFocusScope"/>
/// when it activates, e.g. when a Window is activated.
/// </remarks>
voidSetFocusScope(IFocusScopescope);
/// <summary>
/// Notifies the focus manager that a focus scope has been removed.
/// </summary>
/// <param name="scope">The focus scope to be removed.</param>
/// This should not be called by client code. It is called by an <see cref="IFocusScope"/>
/// when it deactivates or closes, e.g. when a Window is closed.
voidRemoveFocusScope(IFocusScopescope);
[Unstable("This API might be removed in 11.x minor updates. Please consider focusing another element instead of removing focus at all for better UX.")]