multibinding, converters and setters : unexpected error












0















I am trying to use a multibinding style for a button in WPF, but I get an awkward error :
System.ArgumentException : ''System.Drawing.SolidBrush' n'est pas une valeur valide pour la propriété 'System.Windows.Controls.Panel.Background' d'une méthode Setter.'



Yet I am applying my setters to Button.BackgroundProperty...



here is the multibinding:



    <Button
Height="20"
Margin="2,0,2,2"
VerticalAlignment="Bottom"
Click="Btn_summary_OnClick"
Content="Résumé"
Name="btn_summary">
<Button.Style>
<MultiBinding Converter="{StaticResource StyleConverter1}">
<Binding ElementName="listBoxBooks" Path="SelectedItem" />
<Binding Source="{StaticResource bookManagement}" Path="SelectedTab" Mode="OneWay"/>
<Binding RelativeSource="{RelativeSource Self}" Path="Name"/>
</MultiBinding>
</Button.Style>
</Button>


and the converter:



    public class StyleConverter1 : IMultiValueConverter
{

public object Convert(object values, Type targetType, object parameter, CultureInfo culture)
{
Style styleToApply = new Style(typeof(Button));

Object selectedItem = values[0];
if (selectedItem == null)
{
styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, false));
return styleToApply;
}




styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, true));

string selectedTab = values[1] as string;
if (selectedTab == null)
{
return styleToApply;
}


string buttonName = values[2] as string;
if ((selectedTab.Equals("summary") && buttonName.Equals("btn_summary"))
|| (selectedTab.Equals("end") && buttonName.Equals("btn_end"))
|| (selectedTab.Equals("amazon") && buttonName.Equals("btn_amazon"))
)
{
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty,Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.RoyalBlue));
}
else
{
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty, Brushes.RoyalBlue));
}

return styleToApply;
}

public object ConvertBack(object value, Type targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}


}


I don't understand why VS want to apply my setters to a panel.



thank you










share|improve this question























  • For further questions, please provide the Error Message in English. That way more people are able to understand your problem. (In this case the Text isn't that important, just a heads up for future questions)

    – Tobias Tengler
    Nov 20 '18 at 9:16
















0















I am trying to use a multibinding style for a button in WPF, but I get an awkward error :
System.ArgumentException : ''System.Drawing.SolidBrush' n'est pas une valeur valide pour la propriété 'System.Windows.Controls.Panel.Background' d'une méthode Setter.'



Yet I am applying my setters to Button.BackgroundProperty...



here is the multibinding:



    <Button
Height="20"
Margin="2,0,2,2"
VerticalAlignment="Bottom"
Click="Btn_summary_OnClick"
Content="Résumé"
Name="btn_summary">
<Button.Style>
<MultiBinding Converter="{StaticResource StyleConverter1}">
<Binding ElementName="listBoxBooks" Path="SelectedItem" />
<Binding Source="{StaticResource bookManagement}" Path="SelectedTab" Mode="OneWay"/>
<Binding RelativeSource="{RelativeSource Self}" Path="Name"/>
</MultiBinding>
</Button.Style>
</Button>


and the converter:



    public class StyleConverter1 : IMultiValueConverter
{

public object Convert(object values, Type targetType, object parameter, CultureInfo culture)
{
Style styleToApply = new Style(typeof(Button));

Object selectedItem = values[0];
if (selectedItem == null)
{
styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, false));
return styleToApply;
}




styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, true));

string selectedTab = values[1] as string;
if (selectedTab == null)
{
return styleToApply;
}


string buttonName = values[2] as string;
if ((selectedTab.Equals("summary") && buttonName.Equals("btn_summary"))
|| (selectedTab.Equals("end") && buttonName.Equals("btn_end"))
|| (selectedTab.Equals("amazon") && buttonName.Equals("btn_amazon"))
)
{
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty,Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.RoyalBlue));
}
else
{
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty, Brushes.RoyalBlue));
}

return styleToApply;
}

public object ConvertBack(object value, Type targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}


}


I don't understand why VS want to apply my setters to a panel.



thank you










share|improve this question























  • For further questions, please provide the Error Message in English. That way more people are able to understand your problem. (In this case the Text isn't that important, just a heads up for future questions)

    – Tobias Tengler
    Nov 20 '18 at 9:16














0












0








0








I am trying to use a multibinding style for a button in WPF, but I get an awkward error :
System.ArgumentException : ''System.Drawing.SolidBrush' n'est pas une valeur valide pour la propriété 'System.Windows.Controls.Panel.Background' d'une méthode Setter.'



Yet I am applying my setters to Button.BackgroundProperty...



here is the multibinding:



    <Button
Height="20"
Margin="2,0,2,2"
VerticalAlignment="Bottom"
Click="Btn_summary_OnClick"
Content="Résumé"
Name="btn_summary">
<Button.Style>
<MultiBinding Converter="{StaticResource StyleConverter1}">
<Binding ElementName="listBoxBooks" Path="SelectedItem" />
<Binding Source="{StaticResource bookManagement}" Path="SelectedTab" Mode="OneWay"/>
<Binding RelativeSource="{RelativeSource Self}" Path="Name"/>
</MultiBinding>
</Button.Style>
</Button>


and the converter:



    public class StyleConverter1 : IMultiValueConverter
{

public object Convert(object values, Type targetType, object parameter, CultureInfo culture)
{
Style styleToApply = new Style(typeof(Button));

Object selectedItem = values[0];
if (selectedItem == null)
{
styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, false));
return styleToApply;
}




styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, true));

string selectedTab = values[1] as string;
if (selectedTab == null)
{
return styleToApply;
}


string buttonName = values[2] as string;
if ((selectedTab.Equals("summary") && buttonName.Equals("btn_summary"))
|| (selectedTab.Equals("end") && buttonName.Equals("btn_end"))
|| (selectedTab.Equals("amazon") && buttonName.Equals("btn_amazon"))
)
{
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty,Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.RoyalBlue));
}
else
{
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty, Brushes.RoyalBlue));
}

return styleToApply;
}

public object ConvertBack(object value, Type targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}


}


I don't understand why VS want to apply my setters to a panel.



thank you










share|improve this question














I am trying to use a multibinding style for a button in WPF, but I get an awkward error :
System.ArgumentException : ''System.Drawing.SolidBrush' n'est pas une valeur valide pour la propriété 'System.Windows.Controls.Panel.Background' d'une méthode Setter.'



Yet I am applying my setters to Button.BackgroundProperty...



here is the multibinding:



    <Button
Height="20"
Margin="2,0,2,2"
VerticalAlignment="Bottom"
Click="Btn_summary_OnClick"
Content="Résumé"
Name="btn_summary">
<Button.Style>
<MultiBinding Converter="{StaticResource StyleConverter1}">
<Binding ElementName="listBoxBooks" Path="SelectedItem" />
<Binding Source="{StaticResource bookManagement}" Path="SelectedTab" Mode="OneWay"/>
<Binding RelativeSource="{RelativeSource Self}" Path="Name"/>
</MultiBinding>
</Button.Style>
</Button>


and the converter:



    public class StyleConverter1 : IMultiValueConverter
{

public object Convert(object values, Type targetType, object parameter, CultureInfo culture)
{
Style styleToApply = new Style(typeof(Button));

Object selectedItem = values[0];
if (selectedItem == null)
{
styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, false));
return styleToApply;
}




styleToApply.Setters.Add(new Setter(Button.IsEnabledProperty, true));

string selectedTab = values[1] as string;
if (selectedTab == null)
{
return styleToApply;
}


string buttonName = values[2] as string;
if ((selectedTab.Equals("summary") && buttonName.Equals("btn_summary"))
|| (selectedTab.Equals("end") && buttonName.Equals("btn_end"))
|| (selectedTab.Equals("amazon") && buttonName.Equals("btn_amazon"))
)
{
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty,Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.RoyalBlue));
}
else
{
styleToApply.Setters.Add(new Setter(Button.ForegroundProperty, Brushes.Yellow));
styleToApply.Setters.Add(new Setter(Button.BackgroundProperty, Brushes.RoyalBlue));
}

return styleToApply;
}

public object ConvertBack(object value, Type targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}


}


I don't understand why VS want to apply my setters to a panel.



thank you







c# wpf binding multibinding






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 9:05









lolveleylolveley

72111022




72111022













  • For further questions, please provide the Error Message in English. That way more people are able to understand your problem. (In this case the Text isn't that important, just a heads up for future questions)

    – Tobias Tengler
    Nov 20 '18 at 9:16



















  • For further questions, please provide the Error Message in English. That way more people are able to understand your problem. (In this case the Text isn't that important, just a heads up for future questions)

    – Tobias Tengler
    Nov 20 '18 at 9:16

















For further questions, please provide the Error Message in English. That way more people are able to understand your problem. (In this case the Text isn't that important, just a heads up for future questions)

– Tobias Tengler
Nov 20 '18 at 9:16





For further questions, please provide the Error Message in English. That way more people are able to understand your problem. (In this case the Text isn't that important, just a heads up for future questions)

– Tobias Tengler
Nov 20 '18 at 9:16












1 Answer
1






active

oldest

votes


















3














System.Drawing is the namespace for Winforms. Delete this and replace with the WPF equivalent System.Windows.Media, and you'll then use the right Brushes class.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53389538%2fmultibinding-converters-and-setters-unexpected-error%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    System.Drawing is the namespace for Winforms. Delete this and replace with the WPF equivalent System.Windows.Media, and you'll then use the right Brushes class.






    share|improve this answer




























      3














      System.Drawing is the namespace for Winforms. Delete this and replace with the WPF equivalent System.Windows.Media, and you'll then use the right Brushes class.






      share|improve this answer


























        3












        3








        3







        System.Drawing is the namespace for Winforms. Delete this and replace with the WPF equivalent System.Windows.Media, and you'll then use the right Brushes class.






        share|improve this answer













        System.Drawing is the namespace for Winforms. Delete this and replace with the WPF equivalent System.Windows.Media, and you'll then use the right Brushes class.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 20 '18 at 9:09









        PeregrinePeregrine

        2,37721230




        2,37721230






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53389538%2fmultibinding-converters-and-setters-unexpected-error%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith