Skip to content
New issue

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

Support Other XML Namespaces #5

Open
srsgores opened this issue Aug 30, 2016 · 0 comments
Open

Support Other XML Namespaces #5

srsgores opened this issue Aug 30, 2016 · 0 comments

Comments

@srsgores
Copy link

Using alternative xmlns namespaces, vsXen will not be active. For example, in my Avalonia project, tab completion does not work:

<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant