16,020,459 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Visual Basic questions
View Javascript questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Rodimus74 (Top 5 by date)
Rodimus74
8-May-17 20:16pm
View
Thank you for your response. I was using Button 1 & 2 as examples - it is Number 3 that I want to get working so that I can dynamically change the image.
Can you please provide further details of the solution you are offering.
Thank you.
Rodimus74
20-Apr-17 0:31am
View
Deleted
Thanks for your reply Richard.
public sealed partial class MainPage : Page
{
private aViewModel myViewModel = new aViewModel();
public MainPage()
{
this.InitializeComponent();
this.Loaded += OnLoaded;
this.DataContext = myViewModel;
myViewModel.StartNew();
}
}
//In the VM
public class aViewModel : INotifyPropertyChanged
{
public Character[,] CurrentPosition
{
get { return _currentPosition; }
private set { _currentPosition = value; RaiseProperty("CurrentPosition"); }
}
public void StartNew()
{
arrayOfClass[1,1] = new anObject();
CurrentPosition = arrayOfClass[1, 1];
}
}
----
I believe the issue is that the array Object hasn't been created, but the NullTarget isn't protecting the XAML. The XAML would be protected where the array Object existed and the referenced property within the object was null.
Rodimus74
18-Apr-17 19:30pm
View
Thanks for your reply Richard.
public sealed partial class MainPage : Page
{
private aViewModel myViewModel = new aViewModel();
public MainPage()
{
this.InitializeComponent();
this.Loaded += OnLoaded;
this.DataContext = myViewModel;
myViewModel.StartNew();
}
}
//In the VM
public class aViewModel : INotifyPropertyChanged
{
public Character[,] CurrentPosition
{
get { return _currentPosition; }
private set { _currentPosition = value; RaiseProperty("CurrentPosition"); }
}
public void StartNew()
{
arrayOfClass[1,1] = new anObject();
CurrentPosition = arrayOfClass[1, 1];
}
}
----
I believe the issue is that the array Object hasn't been created, but the NullTarget isn't protecting the XAML. The XAML would be protected where the array Object existed and the referenced property within the object was null.
Rodimus74
8-Mar-17 19:12pm
View
Thank you, yes I did question the UI. But the simple fact is, the data is row/column data - so a excel like component is the most appropriate.
Rodimus74
21-Sep-16 19:18pm
View
Thank you for your response.
Yes, the value NULL is displayed.