isenabled Questions

3

I have a DevExpress grid, which is disabled on screen. When I click the control, I want it to become enabled. Right now I have a click event set up for the grid: private void gridPSR_Click(object...
Hoes asked 22/8, 2014 at 19:30

4

Solved

The solutions i'm finding on here use .enabled which is old, rather than .isEnabled. So i'm currenting trying to just disable the functionality/clickability of buttons if a certain condition is (...
Gustav asked 28/3, 2017 at 15:41

4

Solved

I'm a starter in WPF, and there's something I can't seem to figure out. I have a CheckBox that I would like to disable when a RadioButton is not selected. My current syntax is: <CheckBox IsEna...
Fief asked 23/6, 2010 at 6:36

3

Solved

Wait!!!:I know that you may think this question have been asked and answered several time before. But I can guarantee you that this question is unique. Question: In an iOS App, just imagine two but...

3

Solved

I want to change button image when button IsEnabled == False. Below is my example, bindings are fine, when I change them for False/True it is still not working. <Button x:Name="btnBackward" Gr...
Touber asked 17/10, 2011 at 16:27

3

Solved

Maybe I'm missing something and failing at google all at that same time but how would I say similar to: ... if ($(this:enabled)){ //some code } ... I know normally you'd say something like $("#...
Moderate asked 31/12, 2014 at 20:25

1

Solved

I have a TextBox which needs to be enabled / disabled programmatically. I want to achieve this using a binding to a Boolean. Here is the TextBox XAML: <TextBox Height="424" HorizontalAlignment=...
Lading asked 23/8, 2014 at 23:28

3

Solved

I have a kinda awful problem with my WPF application right now... I have a custom UserControl used to edit details of a component. It should start by being not enabled, and become enabled as soon ...
Magazine asked 17/3, 2011 at 11:50

0

Is it possible to programmatically check this? Settings -> About device -> Software Update -> Auto update (Check for updates automatically)
Chicle asked 7/2, 2014 at 13:22

2

Is it possible to programmatically check if the system option of iPhone Settings -> Sounds -> Vibrate on Ring is enabled? In my app, I would like to display an alert to the user if that o...
Choochoo asked 10/10, 2013 at 12:15

2

Solved

<asp:RadioButtonList ID="rdStatus" onclick="javacript:display();" runat="server" RepeatDirection="Vertical"> <asp:ListItem Text="Temporary Waiver" Value="T" Selected="True"></a...
Owlet asked 24/9, 2013 at 5:3

2

Solved

How do I add a custom convention to Caliburn.Micro for the IsEnabled property of controls - something like having NameEnabled bound to IsEnabled in parallel to Name bound to Text on a TextBox. In ...
Alexandros asked 28/1, 2012 at 8:52

2

Solved

I want to listen for changes to the IsEnabled property on WPF elements (so that I can run some common code whenever it changes) without having to put a load of code in each window/page. I also wa...
Inoperative asked 4/8, 2011 at 11:29

3

Solved

I've got a TabItem contanining a listbox, which has an obeservable collection of my feeds class as its item source. When I refresh/load the feeds into the collection I want to disable the main wind...
Jasper asked 23/3, 2010 at 11:26

1

Solved

I have a Button and its Style: <Button Name="MyBtn" Style="{StaticResource ButtonEnabledStyle}" IsEnabled="False" Opacity="1" /> <Style x:Key="ButtonEnabledStyle" TargetType="Button"&gt...
Eratosthenes asked 19/9, 2012 at 11:45

3

Solved

I need to bind a TextBox that meets two criteria: IsEnabled if Text.Length > 0 IsEnabled if user.IsEnabled Where user.IsEnabled is pulled from a data source. I was wondering if anyone had a ea...
Liebman asked 6/9, 2012 at 19:36

1

Solved

I got a button inside a grid that contains many other buttons and controls such as this <Grid IsEnabled="false"> <Grid.ColumnsDefinition> <ColumnDefinition/> <ColumnDefinit...
Masson asked 30/4, 2012 at 6:36

2

Solved

Have a button that I want disabled if a binding value is false or null. Here is was I tried. <Button Content="Open" IsEnabled="{Binding SearchItem.WFBatchFolderStatus.UserCanOpen, Mode=OneWay, ...
Teat asked 21/8, 2011 at 19:46

4

Solved

I'm new to WPF, in the past I've used Windows Forms. I'm having an issue here that I like someone to explain to me. The below is a really simple example. I've got a XAML page on which I've got a s...
Worlock asked 13/6, 2011 at 8:40

2

Solved

In Android I can set a button to be enabled or disabled by doing the following: button.setEnabled(true); or button.setEnabled(false); How do I check whether the button enabled state is true or fa...
Selfsupport asked 27/5, 2011 at 4:0

5

I think I have found an issue with the DatePicker in the toolkit, perhaps some of you gurus can check it out. The issue is when setting the IsEnabled property of the DatePicker. If set in XAML, it...
Stroll asked 14/4, 2010 at 6:47

3

Solved

I want to enable/disable a ComboBox based on if there is an item selected in another ComboBox. I was able to get it working by setting a trigger on the Style, but that overrides my custom global st...
Dire asked 9/2, 2011 at 21:17

1

Solved

I would like to have the image to have an opacity of .50 when the IsEnabled is false. I have been looking at multiple examples but still I am not able to grasp how to make it work. Here is the ful...
Levantine asked 30/12, 2010 at 19:13

2

Solved

I have a select 'All' checkbox that I would like to be bound to the (IsChecked || !IsEnabled) of other checkboxes. Checking 'All' checks all enabled checkboxes. Unchecking 'All' unchecks all che...
Joe asked 14/12, 2010 at 19:34

1

Solved

I have a Button that is looking at 2 comboboxes to make sure they have a value before it is enabled. The problem is the way I am doing it is overwriting the default style declared in my theme proje...
Flanders asked 16/12, 2008 at 16:44

© 2022 - 2024 — McMap. All rights reserved.