pauliology
pauliology
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Will have to continue this when i return
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
great im losing internet as the mine camp power is going out for testing
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
one moment
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
So atm I am getting a fault with how InitializeComponent, saying it doesn't exist
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Great idea
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
I am doing that right now
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Ok im gonna follow yours only
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Thats why I was getting confused
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
It's completely different to what yours was
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
I see
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
I'll keep it to here only
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
My apologies for asking twice
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Is the actual example I was looking at wrong
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
*observable objects
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
@Pope
public ObservableCollection<Drill> DrillList { get; set; } = [
new Drill { drill = "DR055", radio = "Test" },
new Drill { drill = "DR060", radio = "Test2" },
];
}

public class Drill
{
private string drillID;
private string radioIpAddress;

public Drill(string drill, string radio)
{
this.drillID = drill;
this.radioIpAddress = radio;

}

public string drill { get; set; }
public string radio { get; set; }

}
public ObservableCollection<Drill> DrillList { get; set; } = [
new Drill { drill = "DR055", radio = "Test" },
new Drill { drill = "DR060", radio = "Test2" },
];
}

public class Drill
{
private string drillID;
private string radioIpAddress;

public Drill(string drill, string radio)
{
this.drillID = drill;
this.radioIpAddress = radio;

}

public string drill { get; set; }
public string radio { get; set; }

}
Would this be correct? I am trying to understand the basics before I move onto your observable properties
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
I was merely trying to adjust what they had and pull the data out of the list
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
I did look at your examples, then I found I was kinda struggling, so I went back to basics to learn from the start using the documentation found here
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Hey Pope, thanks for helping out again
148 replies
CC#
Created by pauliology on 4/26/2025 in #help
Fancy Button color change.
Hello there @Pope, I had some spare time tonight so I was going to try to use your examples to convert my existing horror project to your lovely neat methods
148 replies