We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using alternative xmlns namespaces, vsXen will not be active. For example, in my Avalonia project, tab completion does not work:
xmlns
<Window xmlns="https://github.com/avaloniaui" MinWidth="500" MinHeight="300"> <TextBlock Classes="h1">Hello world!</TextBlock> </Window>
But will work on a custom control:
<UserControl x:Class="AvaloniaApplication2.UserControl1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:AvaloniaApplication2" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> </UserControl>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using alternative
xmlns
namespaces, vsXen will not be active. For example, in my Avalonia project, tab completion does not work:But will work on a custom control:
The text was updated successfully, but these errors were encountered: