Description
XAML IntelliSense works normally for most Eto.Forms controls (e.g., Label, TextBox, StackLayout, GridLayout), but does not trigger at all for the <Button> element.
When typing:
no auto-complete suggestions appear.
However, autocomplete works for other controls inside the same XAML file.
This issue happens even when using a minimal file with a correct namespace, such as:
<Form xmlns="http://schema.picoe.ca/eto.forms"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Button Text="Test" />
</Form>
Other elements show IntelliSense, but <Button> does not.
Steps to Reproduce
- Create a new Eto.Forms project with XAML support.
- Install
Eto.Serialization.Xaml.
- Add a simple XAML file with standard Eto namespaces.
- Type
<Button inside the Form.
- Observe that IntelliSense does not show any suggestions.
Expected Behavior
IntelliSense should display available attributes and properties for <Button> — just like other controls.
Actual Behavior
No IntelliSense popup appears for <Button> (but works for other controls like Label, TextBox, etc.).
Additional Notes
- Clean/Rebuild does not fix the issue.
- Reopening the file or restarting the IDE does not help.
- The issue reproduces consistently in new empty projects.
- The problem seems isolated to the
Button control only.
Description
XAML IntelliSense works normally for most Eto.Forms controls (e.g., Label, TextBox, StackLayout, GridLayout), but does not trigger at all for the
<Button>element.When typing:
<Buttonno auto-complete suggestions appear.
However, autocomplete works for other controls inside the same XAML file.
This issue happens even when using a minimal file with a correct namespace, such as:
Other elements show IntelliSense, but
<Button>does not.Steps to Reproduce
Eto.Serialization.Xaml.<Buttoninside the Form.Expected Behavior
IntelliSense should display available attributes and properties for
<Button>— just like other controls.Actual Behavior
No IntelliSense popup appears for
<Button>(but works for other controls like Label, TextBox, etc.).Additional Notes
Buttoncontrol only.