xcc icon indicating copy to clipboard operation
xcc copied to clipboard

XAML Conditional Compilation

Results 8 xcc issues
Sort by recently updated
recently updated
newest added

Created a default Shell project, then in the AboutPage.xaml ``` ........ .......... ``` but nothing is shown at runtime.

I am trying to load different resources for my app based on some preprocessor condition. However, when starting the application, it fails throwing the following exception: **Xamarin.Forms.Xaml.XamlParseException:** 'Position xx:xx. StaticResource...

I can clearly see that `obj/Debug/preprocessedxaml` contains files with proper changes, but for some reason I still get `MarkupExtension not found for d:DesignInstance` error.

Is there any way of getting this to work with Xamarin Studio?

bug

I want an element to be included UNLESS a symbol is defined, rather than included when a symbol is included.

I have a Windows Phone Silverlight 8.1 app where I need to use XCC. Two custom compilation symbols been added: RAW_APP & PRO_APP My page's xaml: ``` ``` Here my...

Hi, we use this tool in our Xamarin.Forms projects to enable design time data binding intellisense by using the attributes: xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" It's super helpful in Xamarin.Forms development as...

For example, when I want to exclude MyCustomWindow from compiling: ``` ``` How would I do that? `

bug