如何建立Pentomino游戏

时间:2013-10-09 16:11:08

标签: c# windows xaml

我想在C#/ XAML for Windows 8(8.1)中构建Pentomino游戏。我需要现场和可拖动的数字。

我怎么做?对于可拖动我正在使用ManipulationDelta属性,但我怎么知道该数字在该字段中以及如何附加它(图中的字段)?

1 个答案:

答案 0 :(得分:0)

正如你的问题所说,它太宽泛了。

为了将来参考,您应该尝试将问题分解为较小的问题,并在首先进行一些家庭研究后为每个问题询问单独的问题。

此外,分享一些有关您尝试过的内容的代码可以让更多人帮助您。


话虽如此,我从未使用过XAML,虽然我已经和C#合作了一段时间。

关于你的问题:

对于pentomino,你需要一块板。使用GridDataGridView对我来说听起来不错。

为了表示您的数字,可以查询您的网格,以确定您的数字是否可以在某个方格上下垂。准备写一些for循环。

Abput drag'n drop,这里有一些你可能会觉得有用的链接:

XAML GridView to GridView Drag and Drop Mouse vs Touch

Dropping an item on an UserControl item in GridView doesnt trigger Drop event (includes sample project)

How do I drag an element in Windows 8 XAML app?