multibinding, converters and setters : unexpected error
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
add a comment |
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
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
add a comment |
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
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
c# wpf binding multibinding
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 20 '18 at 9:09
PeregrinePeregrine
2,37721230
2,37721230
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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