VS2017是否支持Edit&继续使用Xamarin表格?

时间:2017-09-08 14:28:31

标签: xamarin.forms xamarin.android visual-studio-2017

我刚开始在Visual Studio 2017中使用Xamarin进行Android开发。

This question表明E& C是不可能的,但那是几年前的事。

是否仍然无法在某个位置放置断点,例如MainActivity.cs,然后在遇到中断时编辑周围的代码?

我正在使用使用Android虚拟设备管理器创建的Android 6.0模拟器。

1 个答案:

答案 0 :(得分:2)

Sub MoveWaitParts() 'move rows from sheet 1 to sheet 2 if column E has a 13 in it. 'for Move Row into new sheet based on cell valueDim Check As Range lastrow = Worksheets("Dispatch").UsedRange.Rows.Count lastrow2 = Worksheets("wait parts").UsedRange.Rows.Count Dim Response As VbMsgBoxResult Response = MsgBox("Are you sure", vbYesNo Or vbDefaultButton2) If Response = vbYes Then If lastrow2 = 1 Then lastrow2 = 0 Else End If Do While Application.WorksheetFunction.CountIf(Range("E:E"), "13") > 0 Set Check = Range("E1:E4" & lastrow) For Each cell In Check If cell = "13" Then cell.EntireRow.Copy Destination:=Worksheets("wait parts").Range("A" & lastrow2 + 1) cell.EntireRow.Delete lastrow2 = lastrow2 + 1 Else: End If Next Loop End If End Sub Visual Studio 2017Android等平台尚未提供此功能,但这适用于iOS平台。

this comment。 Rodrigo Kumpera说:

  

我们一直在评估为用户做的最好的事情。我们   知道编辑和继续是多么棒 - 我们确实这样做。

这证明此功能尚不可用。