Fuse.Elements bug for Alignment and Visibility

When including:

using Fuse.Elements;

I still get an error when attempting to do any of the following:

someTextInput.Alignment = Center;
someTextInput.Visibility = Visible;
someTextInput.Visibility = Hidden;
someText.Visibility = Hidden;

I have tried all of these and the only way I could get them to work was by providing the full path to Visible, Hidden or Center. e.g.

Fuse.Elements.Visibility.Visible;
Fuse.Elements.Visibility.Hidden;
Fuse.Elements.Alignment.Center;

I have not yet tested the other members of Fuse.Elements.

Hi!

Even though you add Fuse.Elements to your usings you still need to qualify with the enum type.

So instead of:

someTextInput.Alignment = Center;
someTextInput.Visibility = Visible;
someTextInput.Visibility = Hidden;
someText.Visibility = Hidden;

just do:

someTextInput.Alignment = Alignment.Center;
someTextInput.Visibility = Visibility.Visible;
someTextInput.Visibility = Visibility.Hidden;
someText.Visibility = Visibility.Hidden;