我已经在网上广泛搜索了这个主题,但我仍然找不到至少可以让我接近我想要实现的解决方案。
我想在 中创建一个数独应用程序WPF and C#
,我的主要问题是关于创建网格。
网格本身必须是9 x 9
,并且有一个editable structure textbox-like
,我的意思是一个定制设计的网格(所以我可以像在真正的数独中一样绘制线条 - 块之间的线条更粗,单元格之间的线条更细,就像在这个例子中一样:
http: //www.mathworks.com/matlabcentral/fx_files/8558/2/sudoku.png(还不能发布图片)
我希望每个字段都像文本框一样运行,所以我可以在其中输入值并读取它们,然后将网格变成一个单元格数组。
So the question is: What controls to use?
How to make them textbox-like(considering those are just drawn lines) or how to set their design?
Also, maybe there's an easier solution to my problem?